-
Notifications
You must be signed in to change notification settings - Fork 0
/
clink_settings
122 lines (92 loc) · 2.38 KB
/
clink_settings
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
# name: Enable automatic suggestions
# type: boolean
autosuggest.enable = True
# name: Selects default key bindings
# type: enum
# options: bash,windows
clink.default_bindings = windows
# name: Auto-answer terminate prompt
# type: enum
# options: off,answer_yes,answer_no
cmd.auto_answer = answer_yes
# name: Pressing Ctrl-D exits session
# type: boolean
cmd.ctrld_exits = False
# name: Argument color
# type: color
color.arg = bold
# name: Argument info color
# type: color
color.arginfo = sgr 1;38;5;172
# name: Argmatcher color
# type: color
color.argmatcher = sgr 1;38;5;40
# name: Shell command completions
# type: color
color.cmd = sgr 1;38;5;231
# name: Color for < and > redirection symbols
# type: color
color.cmdredir = sgr 38;5;172
# name: Color for & and | command separators
# type: color
color.cmdsep = sgr 38;5;214
# name: Color for comment row
# type: color
color.comment_row = sgr 38;5;87;48;5;18
# name: Description completion color
# type: color
color.description = sgr 38;5;39
# name: Doskey completions
# type: color
color.doskey = sgr 1;38;5;75
# name: Color for executable command word
# type: color
color.executable = sgr 38;5;33
# name: Filtered completion color
# type: color
color.filtered = sgr 38;5;231
# name: Flag color
# type: color
color.flag = sgr 38;5;117
# name: Hidden file completions
# type: color
color.hidden = sgr 38;5;160
# name: Horizontal scroll marker color
# type: color
color.horizscroll = sgr 38;5;16;48;5;30
# name: Input text color
# type: color
color.input = sgr 38;5;222
# name: For user-interaction prompts
# type: color
color.interact = bold
# name: Message area color
# type: color
color.message = default
# name: Readonly file completions
# type: color
color.readonly = sgr 38;5;28
# name: Selected completion color
# type: color
color.selected_completion = sgr 38;5;16;48;5;254
# name: Selection color
# type: color
color.selection = sgr 38;5;16;48;5;179
# name: Color for suggestion text
# type: color
color.suggestion = sgr 38;5;239
# name: Unexpected argument color
# type: color
color.unexpected = default
# name: Color for unrecognized command word
# type: color
color.unrecognized = sgr 38;5;203
# name: The number of history lines to save
# type: integer
history.max_lines = 25000
# name: Expand envvars when completing
# type: boolean
match.expand_envvars = True
# name: Try substring if no prefix matches
# type: boolean
match.substring = True