-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathoh-my-posh.ts
274 lines (272 loc) · 7.07 KB
/
oh-my-posh.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
const config: Fig.Option = {
name: ["--config", "-c"],
description: "The config file to use",
isPersistent: true,
args: {
name: "CONFIG",
description: "The configuration to use",
template: ["filepaths", "history"],
},
};
const format: Fig.Option = {
name: ["--format", "-f"],
description: "The file format to use",
args: {
name: "FORMAT",
description: "The export format",
suggestions: ["json", "yaml", "toml"],
},
};
const completionSpec: Fig.Spec = {
name: "oh-my-posh",
description: "",
subcommands: [
{
name: "init",
description: "Initialize oh-my-posh for your shell",
args: {
name: "SHELL",
suggestions: [
{
name: "zsh",
},
{
name: "fish",
},
{
name: "pwsh",
},
{
name: "powershell",
},
{
name: "cmd",
},
{
name: "bash",
},
{
name: "shell",
},
],
},
options: [
config,
{
name: ["--print", "-p"],
description: "Print the init script",
},
],
},
{
name: "get",
description: "Get oh-my-posh values",
args: {
name: "VALUE",
suggestions: [
{
name: "millis",
description:
"Get the current timestamp in milliseconds, example usage: 'oh-my-posh get millis'",
},
{
name: "shell",
description:
"Get the current shell, example usage: 'oh-my-posh get shell'",
},
],
},
},
{
name: "debug",
description: "Debug oh-my-posh, example usage: 'oh-my-posh debug'",
options: [config],
},
{
name: "config",
description: "Interact with the oh-my-posh configuration",
subcommands: [
{
name: "edit",
description:
"Edit the config file, example usage: 'oh-my-posh config edit'",
},
{
name: "migrate",
description:
"Migrate the config file, example usage: 'oh-my-posh config migrate --config ~/.config.omp.json'",
options: [
{
name: ["--write", "-w"],
description:
"Write the migrated config to the configuration file, example usage: 'oh-my-posh config migrate --write'",
},
format,
],
},
{
name: "export",
description:
"Export the config file, example usage: 'oh-my-posh config export --config ~/.config.omp.toml'",
options: [
{
name: ["--output", "-o"],
description:
"The file to output the migrated config to, example usage: 'oh-my-posh config export --output ~/.config.omp.json'",
args: {
name: "OUTPUT",
description: "The file to write to",
template: ["filepaths"],
},
},
format,
],
},
],
options: [config],
},
{
name: "print",
description: "Print a prompt",
args: {
name: "PROMPT",
suggestions: [
{
name: "primary",
},
{
name: "secondary",
},
{
name: "right",
},
{
name: "transient",
},
{
name: "tooltip",
},
{
name: "valid",
},
{
name: "error",
},
],
},
options: [
config,
{
name: ["--terminal-width", "-w"],
description:
"The terminal width, example usage: 'oh-my-posh print primary --terminal-width 200'",
args: {
name: "WIDTH",
description: "The terminal width",
default: "0",
},
},
{
name: "--command",
description:
"The current command for tooltips, example usage: 'oh-my-posh print tooltip --command az'",
args: {
name: "COMMAND",
description: "The tooltip command",
},
},
{
name: ["--error", "-e"],
description:
"The last exit code, example usage: 'oh-my-posh print primary --error 127'",
args: {
name: "ERROR CODE",
description: "The last error code",
default: "0",
},
},
{
name: "--eval",
description:
"Use eval to render the prompt, example usage: 'oh-my-posh print primary --eval'",
},
{
name: "--execution-time",
description:
"Use last command execution time in millis, example usage: 'oh-my-posh print primary --execution-time 200'",
args: {
name: "EXECUTION TIME",
description: "The last command's execution time",
default: "0",
},
},
{
name: ["--plain", "-p"],
description:
"Print a prompt without ASNI codes, example usage: 'oh-my-posh print primary --plain'",
},
{
name: "--pswd",
description:
"The current working directory according to PowerShell, example usage: 'oh-my-posh print primary --pswd C:\\Users\\user\\Documents'",
args: {
name: "POWERSHELL WORKING DIRECTORY",
description: "The working directory according to PowerShell",
template: ["filepaths"],
},
},
{
name: "--pwd",
description:
"The current working directory, example usage: 'oh-my-posh print primary --pwd /home/user/Documents'",
args: {
name: "WORKING DIRECTORY",
description: "The working directory",
template: ["filepaths"],
},
},
{
name: "--shell",
description:
"The current shell, example usage: 'oh-my-posh print primary --shell fish'",
args: {
name: "SHELL",
description: "The shell used",
suggestions: [
"zsh",
"fish",
"pwsh",
"powershell",
"cmd",
"bash",
"shell",
],
},
},
{
name: "--stack-count",
description:
"The directory stack count, example usage: 'oh-my-posh print primary --stack-count 1'",
args: {
name: "NUM",
description: "The number of stacks",
default: "0",
},
},
],
},
{
name: "version",
description:
"Display the oh-my-posh version, example usage: 'oh-my-posh version'",
},
],
options: [
{
name: ["--help", "-h"],
description: "Show help for oh-my-posh",
isPersistent: true,
},
],
};
export default completionSpec;