-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathhtop.ts
80 lines (80 loc) · 1.81 KB
/
htop.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
const completionSpec: Fig.Spec = {
name: "htop",
description: "Improved top (interactive process viewer)",
options: [
{
name: ["--help", "-h"],
description: "Show help for htop",
},
{
name: ["--no-color", "-C"],
description: "Use a monochrome color scheme",
},
{
name: ["--delay", "-d"],
description: "Delay between updates, in tenths of sec",
args: {
name: "delay",
suggestions: ["10", "1", "60"],
},
},
{
name: ["--filter", "-F"],
description: "Filter commands",
args: {
name: "filter",
},
},
{
name: ["--highlight-changes", "-H"],
description: "Highlight new and old processes",
args: {
name: "delay",
description: "Delay between updates of highlights, in tenths of sec",
suggestions: ["10", "1", "60"],
isOptional: true,
},
},
{
name: ["--no-mouse", "-M"],
description: "Disable the mouse",
},
{
name: ["--pid", "-p"],
description: "Show only the given PIDs",
args: {
name: "PID",
isVariadic: true,
},
},
{
name: ["--sort-key", "-s"],
description: "Sort by COLUMN in list view",
args: {
name: "column",
},
},
{
name: ["--tree", "-t"],
description: "Show the tree view",
},
{
name: ["--user", "-u"],
description: "Show only processes for a given user (or $USER)",
args: {
name: "user",
isOptional: true,
suggestions: ["$USER"],
},
},
{
name: ["--no-unicode", "-U"],
description: "Do not use unicode but plain ASCII",
},
{
name: ["--version", "-V"],
description: "Print version info",
},
],
};
export default completionSpec;