Mercurial > vim
annotate runtime/optwin.vim @ 16723:14c2eca9dd59
Added tag v8.1.1363 for changeset 19ca17f9e155784513749ef35d820a3946115470
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 21 May 2019 21:00:08 +0200 |
parents | 54ffc82f38a8 |
children | c002c4899529 |
rev | line source |
---|---|
7 | 1 " These commands create the option window. |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
15746
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
4 " Last Change: 2019 Feb 08 |
7 | 5 |
6 " If there already is an option window, jump to that one. | |
12039
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
7 let buf = bufnr('option-window') |
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
8 if buf >= 0 |
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
9 let winids = win_findbuf(buf) |
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
10 if len(winids) > 0 |
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
11 if win_gotoid(winids[0]) == 1 |
7 | 12 finish |
13 endif | |
12039
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
14 endif |
7 | 15 endif |
16 | |
17 " Make sure the '<' flag is not included in 'cpoptions', otherwise <CR> would | |
18 " not be recognized. See ":help 'cpoptions'". | |
19 let s:cpo_save = &cpo | |
20 set cpo&vim | |
21 | |
22 " function to be called when <CR> is hit in the option-window | |
23 fun! <SID>CR() | |
24 | |
25 " If on a continued comment line, go back to the first comment line | |
2908 | 26 let lnum = search("^[^\t]", 'bWcn') |
7 | 27 let line = getline(lnum) |
28 | |
29 " <CR> on a "set" line executes the option line | |
30 if match(line, "^ \tset ") >= 0 | |
31 | |
32 " For a local option: go to the previous window | |
33 " If this is a help window, go to the window below it | |
34 let thiswin = winnr() | |
35 let local = <SID>Find(lnum) | |
36 if local >= 0 | |
37 exe line | |
38 call <SID>Update(lnum, line, local, thiswin) | |
39 endif | |
40 | |
41 " <CR> on a "option" line shows help for that option | |
42 elseif match(line, "^[a-z]") >= 0 | |
43 let name = substitute(line, '\([^\t]*\).*', '\1', "") | |
44 exe "help '" . name . "'" | |
45 | |
46 " <CR> on an index line jumps to the group | |
47 elseif match(line, '^ \=[0-9]') >= 0 | |
48 exe "norm! /" . line . "\<CR>zt" | |
49 endif | |
50 endfun | |
51 | |
52 " function to be called when <Space> is hit in the option-window | |
53 fun! <SID>Space() | |
54 | |
55 let lnum = line(".") | |
56 let line = getline(lnum) | |
57 | |
58 " <Space> on a "set" line refreshes the option line | |
59 if match(line, "^ \tset ") >= 0 | |
60 | |
61 " For a local option: go to the previous window | |
62 " If this is a help window, go to the window below it | |
63 let thiswin = winnr() | |
64 let local = <SID>Find(lnum) | |
65 if local >= 0 | |
66 call <SID>Update(lnum, line, local, thiswin) | |
67 endif | |
68 | |
69 endif | |
70 endfun | |
71 | |
72 " find the window in which the option applies | |
73 " returns 0 for global option, 1 for local option, -1 for error | |
74 fun! <SID>Find(lnum) | |
75 if getline(a:lnum - 1) =~ "(local to" | |
76 let local = 1 | |
77 let thiswin = winnr() | |
2908 | 78 wincmd p |
7 | 79 if exists("b:current_syntax") && b:current_syntax == "help" |
2908 | 80 wincmd j |
7 | 81 if winnr() == thiswin |
2908 | 82 wincmd j |
7 | 83 endif |
84 endif | |
85 else | |
86 let local = 0 | |
87 endif | |
88 if local && (winnr() == thiswin || (exists("b:current_syntax") | |
89 \ && b:current_syntax == "help")) | |
90 echo "Don't know in which window" | |
91 let local = -1 | |
92 endif | |
93 return local | |
94 endfun | |
95 | |
96 " Update a "set" line in the option window | |
97 fun! <SID>Update(lnum, line, local, thiswin) | |
98 " get the new value of the option and update the option window line | |
99 if match(a:line, "=") >= 0 | |
100 let name = substitute(a:line, '^ \tset \([^=]*\)=.*', '\1', "") | |
101 else | |
102 let name = substitute(a:line, '^ \tset \(no\)\=\([a-z]*\).*', '\2', "") | |
103 endif | |
104 if name == "pt" && &pt =~ "\x80" | |
105 let val = <SID>PTvalue() | |
106 else | |
2908 | 107 let val = escape(eval('&' . name), " \t\\\"|") |
7 | 108 endif |
109 if a:local | |
2908 | 110 exe a:thiswin . "wincmd w" |
7 | 111 endif |
112 if match(a:line, "=") >= 0 || (val != "0" && val != "1") | |
113 call setline(a:lnum, " \tset " . name . "=" . val) | |
114 else | |
115 if val | |
116 call setline(a:lnum, " \tset " . name . "\tno" . name) | |
117 else | |
118 call setline(a:lnum, " \tset no" . name . "\t" . name) | |
119 endif | |
120 endif | |
121 set nomodified | |
122 endfun | |
123 | |
124 " Reset 'title' and 'icon' to make it work faster. | |
13346
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
125 " Reset 'undolevels' to avoid undo'ing until the buffer is empty. |
7 | 126 let s:old_title = &title |
127 let s:old_icon = &icon | |
128 let s:old_sc = &sc | |
129 let s:old_ru = &ru | |
13346
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
130 let s:old_ul = &ul |
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
131 set notitle noicon nosc noru ul=-1 |
7 | 132 |
133 " If the current window is a help window, try finding a non-help window. | |
134 " Relies on syntax highlighting to be switched on. | |
135 let s:thiswin = winnr() | |
136 while exists("b:current_syntax") && b:current_syntax == "help" | |
2908 | 137 wincmd w |
7 | 138 if s:thiswin == winnr() |
139 break | |
140 endif | |
141 endwhile | |
142 | |
12039
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
143 " Open the window. $OPTWIN_CMD is set to "tab" for ":tab options". |
84066f043ab9
patch 8.0.0900: :tab options doesn't open a new tab page
Christian Brabandt <cb@256bit.org>
parents:
11914
diff
changeset
|
144 exe $OPTWIN_CMD . ' new option-window' |
2908 | 145 setlocal ts=15 tw=0 noro buftype=nofile |
7 | 146 |
147 " Insert help and a "set" command for each option. | |
148 call append(0, '" Each "set" line shows the current value of an option (on the left).') | |
149 call append(1, '" Hit <CR> on a "set" line to execute it.') | |
150 call append(2, '" A boolean option will be toggled.') | |
6385 | 151 call append(3, '" For other options you can edit the value before hitting <CR>.') |
7 | 152 call append(4, '" Hit <CR> on a help line to open a help window on this option.') |
153 call append(5, '" Hit <CR> on an index line to jump there.') | |
154 call append(6, '" Hit <Space> on a "set" line to refresh it.') | |
155 | |
156 " These functions are called often below. Keep them fast! | |
157 | |
158 " Init a local binary option | |
159 fun! <SID>BinOptionL(name) | |
2908 | 160 let val = getwinvar(winnr('#'), '&' . a:name) |
7 | 161 call append("$", substitute(substitute(" \tset " . val . a:name . "\t" . |
162 \!val . a:name, "0", "no", ""), "1", "", "")) | |
163 endfun | |
164 | |
165 " Init a global binary option | |
166 fun! <SID>BinOptionG(name, val) | |
167 call append("$", substitute(substitute(" \tset " . a:val . a:name . "\t" . | |
168 \!a:val . a:name, "0", "no", ""), "1", "", "")) | |
169 endfun | |
170 | |
171 " Init a local string option | |
172 fun! <SID>OptionL(name) | |
2908 | 173 let val = escape(getwinvar(winnr('#'), '&' . a:name), " \t\\\"|") |
7 | 174 call append("$", " \tset " . a:name . "=" . val) |
175 endfun | |
176 | |
177 " Init a global string option | |
178 fun! <SID>OptionG(name, val) | |
2908 | 179 call append("$", " \tset " . a:name . "=" . escape(a:val, " \t\\\"|")) |
7 | 180 endfun |
181 | |
182 let s:idx = 1 | |
183 let s:lnum = line("$") | |
184 call append("$", "") | |
185 | |
186 fun! <SID>Header(text) | |
187 let line = s:idx . " " . a:text | |
188 if s:idx < 10 | |
189 let line = " " . line | |
190 endif | |
191 call append("$", "") | |
192 call append("$", line) | |
193 call append("$", "") | |
194 call append(s:lnum, line) | |
195 let s:idx = s:idx + 1 | |
196 let s:lnum = s:lnum + 1 | |
197 endfun | |
198 | |
199 " Get the value of 'pastetoggle'. It could be a special key. | |
200 fun! <SID>PTvalue() | |
201 redir @a | |
202 silent set pt | |
203 redir END | |
204 return substitute(@a, '[^=]*=\(.*\)', '\1', "") | |
205 endfun | |
206 | |
207 " Restore the previous value of 'cpoptions' here, it's used below. | |
208 let &cpo = s:cpo_save | |
209 | |
210 " List of all options, organized by function. | |
211 " The text should be sufficient to know what the option is used for. | |
212 | |
213 call <SID>Header("important") | |
214 call append("$", "compatible\tbehave very Vi compatible (not advisable)") | |
215 call <SID>BinOptionG("cp", &cp) | |
216 call append("$", "cpoptions\tlist of flags to specify Vi compatibility") | |
217 call <SID>OptionG("cpo", &cpo) | |
218 call append("$", "insertmode\tuse Insert mode as the default mode") | |
219 call <SID>BinOptionG("im", &im) | |
220 call append("$", "paste\tpaste mode, insert typed text literally") | |
221 call <SID>BinOptionG("paste", &paste) | |
222 call append("$", "pastetoggle\tkey sequence to toggle paste mode") | |
223 if &pt =~ "\x80" | |
224 call append("$", " \tset pt=" . <SID>PTvalue()) | |
225 else | |
226 call <SID>OptionG("pt", &pt) | |
227 endif | |
228 call append("$", "runtimepath\tlist of directories used for runtime files and plugins") | |
229 call <SID>OptionG("rtp", &rtp) | |
8182
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
230 call append("$", "packpath\tlist of directories used for plugin packages") |
95d59081580f
commit https://github.com/vim/vim/commit/f6fee0e2d4341c0c2f5339c1268e5877fafd07cf
Christian Brabandt <cb@256bit.org>
parents:
7538
diff
changeset
|
231 call <SID>OptionG("pp", &pp) |
7 | 232 call append("$", "helpfile\tname of the main help file") |
233 call <SID>OptionG("hf", &hf) | |
234 | |
235 | |
236 call <SID>Header("moving around, searching and patterns") | |
237 call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line") | |
238 call append("$", "\t(local to window)") | |
239 call <SID>OptionL("ww") | |
240 call append("$", "startofline\tmany jump commands move the cursor to the first non-blank") | |
241 call append("$", "\tcharacter of a line") | |
242 call <SID>BinOptionG("sol", &sol) | |
243 call append("$", "paragraphs\tnroff macro names that separate paragraphs") | |
244 call <SID>OptionG("para", ¶) | |
245 call append("$", "sections\tnroff macro names that separate sections") | |
246 call <SID>OptionG("sect", §) | |
247 call append("$", "path\tlist of directory names used for file searching") | |
248 call append("$", "\t(global or local to buffer)") | |
249 call <SID>OptionG("pa", &pa) | |
250 call append("$", "cdpath\tlist of directory names used for :cd") | |
251 call <SID>OptionG("cd", &cd) | |
2385
295d53417fc3
Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2341
diff
changeset
|
252 if exists("+autochdir") |
7 | 253 call append("$", "autochdir\tchange to directory of file in buffer") |
254 call <SID>BinOptionG("acd", &acd) | |
255 endif | |
256 call append("$", "wrapscan\tsearch commands wrap around the end of the buffer") | |
257 call <SID>BinOptionG("ws", &ws) | |
258 call append("$", "incsearch\tshow match for partly typed search command") | |
259 call <SID>BinOptionG("is", &is) | |
260 call append("$", "magic\tchange the way backslashes are used in search patterns") | |
261 call <SID>BinOptionG("magic", &magic) | |
4502
605c9ce57ec3
Updated runtime files, language files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4254
diff
changeset
|
262 call append("$", "regexpengine\tselect the default regexp engine used") |
605c9ce57ec3
Updated runtime files, language files and translations.
Bram Moolenaar <bram@vim.org>
parents:
4254
diff
changeset
|
263 call <SID>OptionG("re", &re) |
7 | 264 call append("$", "ignorecase\tignore case when using a search pattern") |
265 call <SID>BinOptionG("ic", &ic) | |
266 call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters") | |
267 call <SID>BinOptionG("scs", &scs) | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
268 call append("$", "casemap\twhat method to use for changing case of letters") |
7 | 269 call <SID>OptionG("cmp", &cmp) |
184 | 270 call append("$", "maxmempattern\tmaximum amount of memory in Kbyte used for pattern matching") |
271 call append("$", " \tset mmp=" . &mmp) | |
7 | 272 call append("$", "define\tpattern for a macro definition line") |
273 call append("$", "\t(global or local to buffer)") | |
274 call <SID>OptionG("def", &def) | |
275 if has("find_in_path") | |
276 call append("$", "include\tpattern for an include-file line") | |
277 call append("$", "\t(local to buffer)") | |
278 call <SID>OptionL("inc") | |
279 call append("$", "includeexpr\texpression used to transform an include line to a file name") | |
280 call append("$", "\t(local to buffer)") | |
281 call <SID>OptionL("inex") | |
282 endif | |
283 | |
284 | |
285 call <SID>Header("tags") | |
286 call append("$", "tagbsearch\tuse binary searching in tags files") | |
287 call <SID>BinOptionG("tbs", &tbs) | |
288 call append("$", "taglength\tnumber of significant characters in a tag name or zero") | |
289 call append("$", " \tset tl=" . &tl) | |
290 call append("$", "tags\tlist of file names to search for tags") | |
291 call append("$", "\t(global or local to buffer)") | |
292 call <SID>OptionG("tag", &tag) | |
7266
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
293 call append("$", "tagcase\thow to handle case when searching in tags files:") |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
294 call append("$", "\t\"followic\" to follow 'ignorecase', \"ignore\" or \"match\"") |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
295 call append("$", "\t(global or local to buffer)") |
6ba7182fb7bd
commit https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
Christian Brabandt <cb@256bit.org>
parents:
7222
diff
changeset
|
296 call <SID>OptionG("tc", &tc) |
7 | 297 call append("$", "tagrelative\tfile names in a tags file are relative to the tags file") |
298 call <SID>BinOptionG("tr", &tr) | |
299 call append("$", "tagstack\ta :tag command will use the tagstack") | |
300 call <SID>BinOptionG("tgst", &tgst) | |
301 call append("$", "showfulltag\twhen completing tags in Insert mode show more info") | |
302 call <SID>BinOptionG("sft", &sft) | |
16447
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
15870
diff
changeset
|
303 if has("eval") |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
15870
diff
changeset
|
304 call append("$", "tagfunc\ta function to be used to perform tag searches") |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
15870
diff
changeset
|
305 call append("$", "\t(local to buffer)") |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
15870
diff
changeset
|
306 call <SID>OptionL("tfu") |
54ffc82f38a8
patch 8.1.1228: not possible to process tags with a function
Bram Moolenaar <Bram@vim.org>
parents:
15870
diff
changeset
|
307 endif |
7 | 308 if has("cscope") |
309 call append("$", "cscopeprg\tcommand for executing cscope") | |
310 call <SID>OptionG("csprg", &csprg) | |
311 call append("$", "cscopetag\tuse cscope for tag commands") | |
312 call <SID>BinOptionG("cst", &cst) | |
313 call append("$", "cscopetagorder\t0 or 1; the order in which \":cstag\" performs a search") | |
314 call append("$", " \tset csto=" . &csto) | |
315 call append("$", "cscopeverbose\tgive messages when adding a cscope database") | |
316 call <SID>BinOptionG("csverb", &csverb) | |
317 call append("$", "cscopepathcomp\thow many components of the path to show") | |
318 call append("$", " \tset cspc=" . &cspc) | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
319 call append("$", "cscopequickfix\twhen to open a quickfix window for cscope") |
7 | 320 call <SID>OptionG("csqf", &csqf) |
2908 | 321 call append("$", "cscoperelative\tfile names in a cscope file are relative to that file") |
322 call <SID>BinOptionG("csre", &csre) | |
7 | 323 endif |
324 | |
325 | |
326 call <SID>Header("displaying text") | |
327 call append("$", "scroll\tnumber of lines to scroll for CTRL-U and CTRL-D") | |
328 call append("$", "\t(local to window)") | |
329 call <SID>OptionL("scr") | |
330 call append("$", "scrolloff\tnumber of screen lines to show around the cursor") | |
331 call append("$", " \tset so=" . &so) | |
332 call append("$", "wrap\tlong lines wrap") | |
13946
c2312fc9fbfe
patch 8.0.1843: entry for 'wrap' in options window is wrong
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
333 call append("$", "\t(local to window)") |
c2312fc9fbfe
patch 8.0.1843: entry for 'wrap' in options window is wrong
Christian Brabandt <cb@256bit.org>
parents:
13857
diff
changeset
|
334 call <SID>BinOptionL("wrap") |
7 | 335 call append("$", "linebreak\twrap long lines at a character in 'breakat'") |
336 call append("$", "\t(local to window)") | |
337 call <SID>BinOptionL("lbr") | |
5995 | 338 call append("$", "breakindent\tpreserve indentation in wrapped text") |
339 call append("$", "\t(local to window)") | |
340 call <SID>BinOptionL("bri") | |
341 call append("$", "breakindentopt\tadjust breakindent behaviour") | |
342 call append("$", "\t(local to window)") | |
343 call <SID>OptionL("briopt") | |
7 | 344 call append("$", "breakat\twhich characters might cause a line break") |
345 call <SID>OptionG("brk", &brk) | |
346 call append("$", "showbreak\tstring to put before wrapped screen lines") | |
347 call <SID>OptionG("sbr", &sbr) | |
348 call append("$", "sidescroll\tminimal number of columns to scroll horizontally") | |
349 call append("$", " \tset ss=" . &ss) | |
350 call append("$", "sidescrolloff\tminimal number of columns to keep left and right of the cursor") | |
351 call append("$", " \tset siso=" . &siso) | |
352 call append("$", "display\tinclude \"lastline\" to show the last line even if it doesn't fit") | |
353 call append("$", "\tinclude \"uhex\" to show unprintable characters as a hex number") | |
354 call <SID>OptionG("dy", &dy) | |
355 call append("$", "fillchars\tcharacters to use for the status line, folds and filler lines") | |
356 call <SID>OptionG("fcs", &fcs) | |
357 call append("$", "cmdheight\tnumber of lines used for the command-line") | |
358 call append("$", " \tset ch=" . &ch) | |
359 call append("$", "columns\twidth of the display") | |
360 call append("$", " \tset co=" . &co) | |
361 call append("$", "lines\tnumber of lines in the display") | |
362 call append("$", " \tset lines=" . &lines) | |
2396
6d6d72521a9a
Add 'window' to the options window.
Bram Moolenaar <bram@vim.org>
parents:
2395
diff
changeset
|
363 call append("$", "window\tnumber of lines to scroll for CTRL-F and CTRL-B") |
6d6d72521a9a
Add 'window' to the options window.
Bram Moolenaar <bram@vim.org>
parents:
2395
diff
changeset
|
364 call append("$", " \tset window=" . &window) |
7 | 365 call append("$", "lazyredraw\tdon't redraw while executing macros") |
366 call <SID>BinOptionG("lz", &lz) | |
1595 | 367 if has("reltime") |
368 call append("$", "redrawtime\ttimeout for 'hlsearch' and :match highlighting in msec") | |
369 call append("$", " \tset rdt=" . &rdt) | |
370 endif | |
7 | 371 call append("$", "writedelay\tdelay in msec for each char written to the display") |
372 call append("$", "\t(for debugging)") | |
373 call append("$", " \tset wd=" . &wd) | |
374 call append("$", "list\tshow <Tab> as ^I and end-of-line as $") | |
375 call append("$", "\t(local to window)") | |
376 call <SID>BinOptionL("list") | |
377 call append("$", "listchars\tlist of strings used for list mode") | |
378 call <SID>OptionG("lcs", &lcs) | |
379 call append("$", "number\tshow the line number for each line") | |
380 call append("$", "\t(local to window)") | |
381 call <SID>BinOptionL("nu") | |
2178
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
1595
diff
changeset
|
382 call append("$", "relativenumber\tshow the relative line number for each line") |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
1595
diff
changeset
|
383 call append("$", "\t(local to window)") |
c6f1aa1e9f32
Add 'relativenumber' patch from Markus Heidelberg.
Bram Moolenaar <bram@vim.org>
parents:
1595
diff
changeset
|
384 call <SID>BinOptionL("rnu") |
13 | 385 if has("linebreak") |
386 call append("$", "numberwidth\tnumber of columns to use for the line number") | |
387 call append("$", "\t(local to window)") | |
388 call <SID>OptionL("nuw") | |
389 endif | |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
390 if has("conceal") |
2385
295d53417fc3
Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2341
diff
changeset
|
391 call append("$", "conceallevel\tcontrols whether concealable text is hidden") |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
392 call append("$", "\t(local to window)") |
2385
295d53417fc3
Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2341
diff
changeset
|
393 call <SID>OptionL("cole") |
2386
fb8cce4174f0
Better text for 'concealcursor' in :options window.
Bram Moolenaar <bram@vim.org>
parents:
2385
diff
changeset
|
394 call append("$", "concealcursor\tmodes in which text in the cursor line can be concealed") |
2385
295d53417fc3
Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2341
diff
changeset
|
395 call append("$", "\t(local to window)") |
295d53417fc3
Fix 'autochdir' not showing up in :options window. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2341
diff
changeset
|
396 call <SID>OptionL("cocu") |
2250
1bac28a53fae
Add the conceal patch from Vince Negri.
Bram Moolenaar <bram@vim.org>
parents:
2214
diff
changeset
|
397 endif |
7 | 398 |
399 | |
381 | 400 call <SID>Header("syntax, highlighting and spelling") |
7 | 401 call append("$", "background\t\"dark\" or \"light\"; the background color brightness") |
402 call <SID>OptionG("bg", &bg) | |
15729 | 403 call append("$", "filetype\ttype of file; triggers the FileType event when set") |
404 call append("$", "\t(local to buffer)") | |
405 call <SID>OptionL("ft") | |
7 | 406 if has("syntax") |
407 call append("$", "syntax\tname of syntax highlighting used") | |
408 call append("$", "\t(local to buffer)") | |
409 call <SID>OptionL("syn") | |
409 | 410 call append("$", "synmaxcol\tmaximum column to look for syntax items") |
411 call append("$", "\t(local to buffer)") | |
412 call <SID>OptionL("smc") | |
7 | 413 endif |
414 call append("$", "highlight\twhich highlighting to use for various occasions") | |
415 call <SID>OptionG("hl", &hl) | |
416 call append("$", "hlsearch\thighlight all matches for the last used search pattern") | |
417 call <SID>BinOptionG("hls", &hls) | |
9046
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
418 if has("termguicolors") |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
8962
diff
changeset
|
419 call append("$", "termguicolors\tuse GUI colors for the terminal") |
9048
5bb5569bec60
commit https://github.com/vim/vim/commit/868cfc19bb079a16ca58884b551486566f35419b
Christian Brabandt <cb@256bit.org>
parents:
9046
diff
changeset
|
420 call <SID>BinOptionG("tgc", &tgc) |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
8962
diff
changeset
|
421 endif |
381 | 422 if has("syntax") |
737 | 423 call append("$", "cursorcolumn\thighlight the screen column of the cursor") |
424 call append("$", "\t(local to window)") | |
425 call <SID>BinOptionL("cuc") | |
426 call append("$", "cursorline\thighlight the screen line of the cursor") | |
427 call append("$", "\t(local to window)") | |
428 call <SID>BinOptionL("cul") | |
2341 | 429 call append("$", "colorcolumn\tcolumns to highlight") |
430 call append("$", "\t(local to window)") | |
431 call <SID>OptionL("cc") | |
381 | 432 call append("$", "spell\thighlight spelling mistakes") |
433 call append("$", "\t(local to window)") | |
434 call <SID>BinOptionL("spell") | |
435 call append("$", "spelllang\tlist of accepted languages") | |
436 call append("$", "\t(local to buffer)") | |
437 call <SID>OptionL("spl") | |
438 call append("$", "spellfile\tfile that \"zg\" adds good words to") | |
439 call append("$", "\t(local to buffer)") | |
440 call <SID>OptionL("spf") | |
393 | 441 call append("$", "spellcapcheck\tpattern to locate the end of a sentence") |
442 call append("$", "\t(local to buffer)") | |
443 call <SID>OptionL("spc") | |
381 | 444 call append("$", "spellsuggest\tmethods used to suggest corrections") |
445 call <SID>OptionG("sps", &sps) | |
500 | 446 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing") |
447 call <SID>OptionG("msm", &msm) | |
381 | 448 endif |
7 | 449 |
450 | |
451 call <SID>Header("multiple windows") | |
452 call append("$", "laststatus\t0, 1 or 2; when to use a status line for the last window") | |
453 call append("$", " \tset ls=" . &ls) | |
454 if has("statusline") | |
455 call append("$", "statusline\talternate format to be used for a status line") | |
456 call <SID>OptionG("stl", &stl) | |
457 endif | |
458 call append("$", "equalalways\tmake all windows the same size when adding/removing windows") | |
459 call <SID>BinOptionG("ea", &ea) | |
15729 | 460 call append("$", "eadirection\tin which direction 'equalalways' works: \"ver\", \"hor\" or \"both\"") |
461 call <SID>OptionG("ead", &ead) | |
7 | 462 call append("$", "winheight\tminimal number of lines used for the current window") |
463 call append("$", " \tset wh=" . &wh) | |
464 call append("$", "winminheight\tminimal number of lines used for any window") | |
465 call append("$", " \tset wmh=" . &wmh) | |
466 call append("$", "winfixheight\tkeep the height of the window") | |
467 call append("$", "\t(local to window)") | |
468 call <SID>BinOptionL("wfh") | |
779 | 469 call append("$", "winfixwidth\tkeep the width of the window") |
470 call append("$", "\t(local to window)") | |
471 call <SID>BinOptionL("wfw") | |
15729 | 472 call append("$", "winwidth\tminimal number of columns used for the current window") |
473 call append("$", " \tset wiw=" . &wiw) | |
474 call append("$", "winminwidth\tminimal number of columns used for any window") | |
475 call append("$", " \tset wmw=" . &wmw) | |
7 | 476 call append("$", "helpheight\tinitial height of the help window") |
477 call append("$", " \tset hh=" . &hh) | |
478 if has("quickfix") | |
479 call append("$", "previewheight\tdefault height for the preview window") | |
480 call append("$", " \tset pvh=" . &pvh) | |
481 call append("$", "previewwindow\tidentifies the preview window") | |
482 call append("$", "\t(local to window)") | |
483 call <SID>BinOptionL("pvw") | |
484 endif | |
485 call append("$", "hidden\tdon't unload a buffer when no longer shown in a window") | |
486 call <SID>BinOptionG("hid", &hid) | |
487 call append("$", "switchbuf\t\"useopen\" and/or \"split\"; which window to use when jumping") | |
488 call append("$", "\tto a buffer") | |
489 call <SID>OptionG("swb", &swb) | |
490 call append("$", "splitbelow\ta new window is put below the current one") | |
491 call <SID>BinOptionG("sb", &sb) | |
15729 | 492 call append("$", "splitright\ta new window is put right of the current one") |
493 call <SID>BinOptionG("spr", &spr) | |
494 call append("$", "scrollbind\tthis window scrolls together with other bound windows") | |
495 call append("$", "\t(local to window)") | |
496 call <SID>BinOptionL("scb") | |
497 call append("$", "scrollopt\t\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'") | |
498 call <SID>OptionG("sbo", &sbo) | |
499 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows") | |
500 call append("$", "\t(local to window)") | |
501 call <SID>BinOptionL("crb") | |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
502 if has("terminal") |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
503 call append("$", "termwinsize\tsize of a terminal window") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
504 call append("$", "\t(local to window)") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
505 call <SID>OptionL("tws") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
506 call append("$", "termwinkey\tkey that precedes Vim commands in a terminal window") |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
507 call append("$", "\t(local to window)") |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
508 call <SID>OptionL("twk") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
509 call append("$", "termwinscroll\tmax number of lines to keep for scrollback in a terminal window") |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
510 call append("$", "\t(local to window)") |
15746
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
511 if has('win32') |
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
512 call append("$", "termwintype\ttype of pty to use for a terminal window") |
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
513 call <SID>OptionG("twt", &twt) |
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
514 endif |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
515 call <SID>OptionL("twsl") |
12182
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
516 if exists("&winptydll") |
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
517 call append("$", "winptydll\tname of the winpty dynamic library") |
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
518 call <SID>OptionG("winptydll", &winptydll) |
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
519 endif |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
520 endif |
7 | 521 |
522 | |
714 | 523 call <SID>Header("multiple tab pages") |
524 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line") | |
525 call append("$", " \tset stal=" . &stal) | |
526 call append("$", "tabpagemax\tmaximum number of tab pages to open for -p and \"tab all\"") | |
527 call append("$", " \tset tpm=" . &tpm) | |
528 call append("$", "tabline\tcustom tab pages line") | |
529 call <SID>OptionG("tal", &tal) | |
842 | 530 if has("gui") |
531 call append("$", "guitablabel\tcustom tab page label for the GUI") | |
532 call <SID>OptionG("gtl", >l) | |
533 call append("$", "guitabtooltip\tcustom tab page tooltip for the GUI") | |
534 call <SID>OptionG("gtt", >t) | |
535 endif | |
714 | 536 |
537 | |
7 | 538 call <SID>Header("terminal") |
539 call append("$", "term\tname of the used terminal") | |
540 call <SID>OptionG("term", &term) | |
541 call append("$", "ttytype\talias for 'term'") | |
542 call <SID>OptionG("tty", &tty) | |
543 call append("$", "ttybuiltin\tcheck built-in termcaps first") | |
544 call <SID>BinOptionG("tbi", &tbi) | |
545 call append("$", "ttyfast\tterminal connection is fast") | |
546 call <SID>BinOptionG("tf", &tf) | |
547 call append("$", "weirdinvert\tterminal that requires extra redrawing") | |
548 call <SID>BinOptionG("wiv", &wiv) | |
549 call append("$", "esckeys\trecognize keys that start with <Esc> in Insert mode") | |
550 call <SID>BinOptionG("ek", &ek) | |
551 call append("$", "scrolljump\tminimal number of lines to scroll at a time") | |
552 call append("$", " \tset sj=" . &sj) | |
553 call append("$", "ttyscroll\tmaximum number of lines to use scrolling instead of redrawing") | |
554 call append("$", " \tset tsl=" . &tsl) | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
555 if has("gui") || has("win32") |
7 | 556 call append("$", "guicursor\tspecifies what the cursor looks like in different modes") |
557 call <SID>OptionG("gcr", &gcr) | |
558 endif | |
559 if has("title") | |
560 let &title = s:old_title | |
561 call append("$", "title\tshow info in the window title") | |
562 call <SID>BinOptionG("title", &title) | |
563 set notitle | |
564 call append("$", "titlelen\tpercentage of 'columns' used for the window title") | |
565 call append("$", " \tset titlelen=" . &titlelen) | |
566 call append("$", "titlestring\twhen not empty, string to be used for the window title") | |
567 call <SID>OptionG("titlestring", &titlestring) | |
568 call append("$", "titleold\tstring to restore the title to when exiting Vim") | |
569 call <SID>OptionG("titleold", &titleold) | |
570 let &icon = s:old_icon | |
571 call append("$", "icon\tset the text of the icon for this window") | |
572 call <SID>BinOptionG("icon", &icon) | |
573 set noicon | |
574 call append("$", "iconstring\twhen not empty, text for the icon of this window") | |
575 call <SID>OptionG("iconstring", &iconstring) | |
576 endif | |
577 if has("win32") | |
578 call append("$", "restorescreen\trestore the screen contents when exiting Vim") | |
579 call <SID>BinOptionG("rs", &rs) | |
580 endif | |
581 | |
582 | |
583 call <SID>Header("using the mouse") | |
584 call append("$", "mouse\tlist of flags for using the mouse") | |
585 call <SID>OptionG("mouse", &mouse) | |
586 if has("gui") | |
587 call append("$", "mousefocus\tthe window with the mouse pointer becomes the current one") | |
588 call <SID>BinOptionG("mousef", &mousef) | |
589 call append("$", "mousehide\thide the mouse pointer while typing") | |
590 call <SID>BinOptionG("mh", &mh) | |
591 endif | |
592 call append("$", "mousemodel\t\"extend\", \"popup\" or \"popup_setpos\"; what the right") | |
593 call append("$", "\tmouse button is used for") | |
594 call <SID>OptionG("mousem", &mousem) | |
595 call append("$", "mousetime\tmaximum time in msec to recognize a double-click") | |
596 call append("$", " \tset mouset=" . &mouset) | |
597 call append("$", "ttymouse\t\"xterm\", \"xterm2\", \"dec\" or \"netterm\"; type of mouse") | |
598 call <SID>OptionG("ttym", &ttym) | |
599 if has("mouseshape") | |
600 call append("$", "mouseshape\twhat the mouse pointer looks like in different modes") | |
601 call <SID>OptionG("mouses", &mouses) | |
602 endif | |
603 | |
604 | |
605 if has("gui") | |
606 call <SID>Header("GUI") | |
607 call append("$", "guifont\tlist of font names to be used in the GUI") | |
608 call <SID>OptionG("gfn", &gfn) | |
609 if has("xfontset") | |
610 call append("$", "guifontset\tpair of fonts to be used, for multibyte editing") | |
611 call <SID>OptionG("gfs", &gfs) | |
612 endif | |
613 call append("$", "guifontwide\tlist of font names to be used for double-wide characters") | |
614 call <SID>OptionG("gfw", &gfw) | |
615 if has("mac") | |
616 call append("$", "antialias\tuse smooth, antialiased fonts") | |
617 call <SID>BinOptionG("anti", &anti) | |
618 endif | |
619 call append("$", "guioptions\tlist of flags that specify how the GUI works") | |
620 call <SID>OptionG("go", &go) | |
621 if has("gui_gtk") | |
622 call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar") | |
623 call <SID>OptionG("tb", &tb) | |
624 if has("gui_gtk2") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
625 call append("$", "toolbariconsize\tsize of toolbar icons") |
7 | 626 call <SID>OptionG("tbis", &tbis) |
627 endif | |
628 call append("$", "guiheadroom\troom (in pixels) left above/below the window") | |
629 call append("$", " \tset ghr=" . &ghr) | |
630 endif | |
6153 | 631 if has("directx") |
632 call append("$", "renderoptions\toptions for text rendering") | |
633 call <SID>OptionG("rop", &rop) | |
634 endif | |
7 | 635 call append("$", "guipty\tuse a pseudo-tty for I/O to external commands") |
636 call <SID>BinOptionG("guipty", &guipty) | |
637 if has("browse") | |
638 call append("$", "browsedir\t\"last\", \"buffer\" or \"current\": which directory used for the file browser") | |
639 call <SID>OptionG("bsdir", &bsdir) | |
640 endif | |
641 if has("multi_lang") | |
642 call append("$", "langmenu\tlanguage to be used for the menus") | |
643 call <SID>OptionG("langmenu", &lm) | |
644 endif | |
645 call append("$", "menuitems\tmaximum number of items in one menu") | |
646 call append("$", " \tset mis=" . &mis) | |
647 if has("winaltkeys") | |
648 call append("$", "winaltkeys\t\"no\", \"yes\" or \"menu\"; how to use the ALT key") | |
649 call <SID>OptionG("wak", &wak) | |
650 endif | |
651 call append("$", "linespace\tnumber of pixel lines to use between characters") | |
652 call append("$", " \tset lsp=" . &lsp) | |
12909 | 653 if has("balloon_eval") || has("balloon_eval_term") |
7 | 654 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up") |
655 call append("$", " \tset bdlay=" . &bdlay) | |
12909 | 656 if has("balloon_eval") |
657 call append("$", "ballooneval\tuse balloon evaluation in the GUI") | |
658 call <SID>BinOptionG("beval", &beval) | |
659 endif | |
660 if has("balloon_eval_term") | |
661 call append("$", "balloonevalterm\tuse balloon evaluation in the terminal") | |
662 call <SID>BinOptionG("bevalterm", &beval) | |
663 endif | |
184 | 664 if has("eval") |
665 call append("$", "balloonexpr\texpression to show in balloon eval") | |
666 call append("$", " \tset bexpr=" . &bexpr) | |
7 | 667 endif |
668 endif | |
1120 | 669 if exists("+macatsui") |
842 | 670 call append("$", "macatsui\tuse ATSUI text drawing; disable to avoid display problems") |
671 call <SID>OptionG("macatsui", &macatsui) | |
672 endif | |
7 | 673 endif |
674 | |
675 if has("printer") | |
676 call <SID>Header("printing") | |
15 | 677 call append("$", "printoptions\tlist of items that control the format of :hardcopy output") |
678 call <SID>OptionG("popt", &popt) | |
7 | 679 call append("$", "printdevice\tname of the printer to be used for :hardcopy") |
680 call <SID>OptionG("pdev", &pdev) | |
15 | 681 if has("postscript") |
682 call append("$", "printexpr\texpression used to print the PostScript file for :hardcopy") | |
683 call <SID>OptionG("pexpr", &pexpr) | |
684 endif | |
7 | 685 call append("$", "printfont\tname of the font to be used for :hardcopy") |
686 call <SID>OptionG("pfn", &pfn) | |
687 call append("$", "printheader\tformat of the header used for :hardcopy") | |
688 call <SID>OptionG("pheader", &pheader) | |
15 | 689 if has("postscript") |
690 call append("$", "printencoding\tencoding used to print the PostScript file for :hardcopy") | |
691 call <SID>OptionG("penc", &penc) | |
692 endif | |
15870
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
693 call append("$", "printmbcharset\tthe CJK character set to be used for CJK output from :hardcopy") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
694 call <SID>OptionG("pmbcs", &pmbcs) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
695 call append("$", "printmbfont\tlist of font names to be used for CJK output from :hardcopy") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
696 call <SID>OptionG("pmbfn", &pmbfn) |
7 | 697 endif |
698 | |
699 call <SID>Header("messages and info") | |
700 call append("$", "terse\tadd 's' flag in 'shortmess' (don't show search message)") | |
701 call <SID>BinOptionG("terse", &terse) | |
702 call append("$", "shortmess\tlist of flags to make messages shorter") | |
703 call <SID>OptionG("shm", &shm) | |
704 call append("$", "showcmd\tshow (partial) command keys in the status line") | |
705 let &sc = s:old_sc | |
706 call <SID>BinOptionG("sc", &sc) | |
707 set nosc | |
708 call append("$", "showmode\tdisplay the current mode in the status line") | |
709 call <SID>BinOptionG("smd", &smd) | |
710 call append("$", "ruler\tshow cursor position below each window") | |
711 let &ru = s:old_ru | |
712 call <SID>BinOptionG("ru", &ru) | |
713 set noru | |
714 if has("statusline") | |
715 call append("$", "rulerformat\talternate format to be used for the ruler") | |
716 call <SID>OptionG("ruf", &ruf) | |
717 endif | |
718 call append("$", "report\tthreshold for reporting number of changed lines") | |
719 call append("$", " \tset report=" . &report) | |
720 call append("$", "verbose\tthe higher the more messages are given") | |
721 call append("$", " \tset vbs=" . &vbs) | |
381 | 722 call append("$", "verbosefile\tfile to write messages in") |
723 call <SID>OptionG("vfile", &vfile) | |
7 | 724 call append("$", "more\tpause listings when the screen is full") |
725 call <SID>BinOptionG("more", &more) | |
726 if has("dialog_con") || has("dialog_gui") | |
727 call append("$", "confirm\tstart a dialog when a command fails") | |
728 call <SID>BinOptionG("cf", &cf) | |
729 endif | |
730 call append("$", "errorbells\tring the bell for error messages") | |
731 call <SID>BinOptionG("eb", &eb) | |
732 call append("$", "visualbell\tuse a visual bell instead of beeping") | |
733 call <SID>BinOptionG("vb", &vb) | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6933
diff
changeset
|
734 call append("$", "belloff\tdo not ring the bell for these reasons") |
6956
ad7ee058c03b
Correct optwin script, update PHP complete.
Bram Moolenaar <bram@vim.org>
parents:
6951
diff
changeset
|
735 call <SID>OptionG("belloff", &belloff) |
7 | 736 if has("multi_lang") |
737 call append("$", "helplang\tlist of preferred languages for finding help") | |
738 call <SID>OptionG("hlg", &hlg) | |
739 endif | |
740 | |
741 | |
742 call <SID>Header("selecting text") | |
743 call append("$", "selection\t\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves") | |
744 call <SID>OptionG("sel", &sel) | |
745 call append("$", "selectmode\t\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode") | |
746 call append("$", "\tinstead of Visual mode") | |
747 call <SID>OptionG("slm", &slm) | |
748 if has("clipboard") | |
749 call append("$", "clipboard\t\"unnamed\" to use the * register like unnamed register") | |
750 call append("$", "\t\"autoselect\" to always put selected text on the clipboard") | |
751 call <SID>OptionG("cb", &cb) | |
752 endif | |
753 call append("$", "keymodel\t\"startsel\" and/or \"stopsel\"; what special keys can do") | |
754 call <SID>OptionG("km", &km) | |
755 | |
756 | |
757 call <SID>Header("editing text") | |
758 call append("$", "undolevels\tmaximum number of changes that can be undone") | |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6153
diff
changeset
|
759 call append("$", "\t(global or local to buffer)") |
13346
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
760 call append("$", " \tset ul=" . s:old_ul) |
8958
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
761 call append("$", "undofile\tautomatically save and restore undo history") |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
762 call <SID>BinOptionG("udf", &udf) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
763 call append("$", "undodir\tlist of directories for undo files") |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
764 call <SID>OptionG("udir", &udir) |
2394
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2386
diff
changeset
|
765 call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload") |
a3aca345aafa
Add the 'undoreload' option to be able to undo a file reload.
Bram Moolenaar <bram@vim.org>
parents:
2386
diff
changeset
|
766 call append("$", " \tset ur=" . &ur) |
7 | 767 call append("$", "modified\tchanges have been made and not written to a file") |
768 call append("$", "\t(local to buffer)") | |
769 call <SID>BinOptionL("mod") | |
770 call append("$", "readonly\tbuffer is not to be written") | |
771 call append("$", "\t(local to buffer)") | |
772 call <SID>BinOptionL("ro") | |
773 call append("$", "modifiable\tchanges to the text are not possible") | |
774 call append("$", "\t(local to buffer)") | |
775 call <SID>BinOptionL("ma") | |
776 call append("$", "textwidth\tline length above which to break a line") | |
777 call append("$", "\t(local to buffer)") | |
778 call <SID>OptionL("tw") | |
779 call append("$", "wrapmargin\tmargin from the right in which to break a line") | |
780 call append("$", "\t(local to buffer)") | |
781 call <SID>OptionL("wm") | |
782 call append("$", "backspace\tspecifies what <BS>, CTRL-W, etc. can do in Insert mode") | |
783 call append("$", " \tset bs=" . &bs) | |
784 call append("$", "comments\tdefinition of what comment lines look like") | |
785 call append("$", "\t(local to buffer)") | |
786 call <SID>OptionL("com") | |
787 call append("$", "formatoptions\tlist of flags that tell how automatic formatting works") | |
788 call append("$", "\t(local to buffer)") | |
789 call <SID>OptionL("fo") | |
41 | 790 call append("$", "formatlistpat\tpattern to recognize a numbered list") |
791 call append("$", "\t(local to buffer)") | |
792 call <SID>OptionL("flp") | |
714 | 793 if has("eval") |
794 call append("$", "formatexpr\texpression used for \"gq\" to format lines") | |
795 call append("$", "\t(local to buffer)") | |
796 call <SID>OptionL("fex") | |
797 endif | |
7 | 798 if has("insert_expand") |
539 | 799 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P") |
7 | 800 call append("$", "\t(local to buffer)") |
801 call <SID>OptionL("cpt") | |
539 | 802 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion") |
803 call <SID>OptionG("cot", &cot) | |
771 | 804 call append("$", "pumheight\tmaximum height of the popup menu") |
805 call <SID>OptionG("ph", &ph) | |
13341
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
806 call append("$", "pumwidth\tminimum width of the popup menu") |
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
807 call <SID>OptionG("pw", &pw) |
12 | 808 call append("$", "completefunc\tuser defined function for Insert mode completion") |
809 call append("$", "\t(local to buffer)") | |
810 call <SID>OptionL("cfu") | |
523 | 811 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion") |
502 | 812 call append("$", "\t(local to buffer)") |
813 call <SID>OptionL("ofu") | |
7 | 814 call append("$", "dictionary\tlist of dictionary files for keyword completion") |
815 call append("$", "\t(global or local to buffer)") | |
816 call <SID>OptionG("dict", &dict) | |
817 call append("$", "thesaurus\tlist of thesaurus files for keyword completion") | |
818 call append("$", "\t(global or local to buffer)") | |
819 call <SID>OptionG("tsr", &tsr) | |
820 endif | |
821 call append("$", "infercase\tadjust case of a keyword completion match") | |
822 call append("$", "\t(local to buffer)") | |
823 call <SID>BinOptionL("inf") | |
824 if has("digraphs") | |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
825 call append("$", "digraph\tenable entering digraphs with c1 <BS> c2") |
7 | 826 call <SID>BinOptionG("dg", &dg) |
827 endif | |
828 call append("$", "tildeop\tthe \"~\" command behaves like an operator") | |
829 call <SID>BinOptionG("top", &top) | |
625 | 830 call append("$", "operatorfunc\tfunction called for the\"g@\" operator") |
831 call <SID>OptionG("opfunc", &opfunc) | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
832 call append("$", "showmatch\twhen inserting a bracket, briefly jump to its match") |
7 | 833 call <SID>BinOptionG("sm", &sm) |
834 call append("$", "matchtime\ttenth of a second to show a match for 'showmatch'") | |
835 call append("$", " \tset mat=" . &mat) | |
836 call append("$", "matchpairs\tlist of pairs that match for the \"%\" command") | |
837 call append("$", "\t(local to buffer)") | |
838 call <SID>OptionL("mps") | |
839 call append("$", "joinspaces\tuse two spaces after '.' when joining a line") | |
840 call <SID>BinOptionG("js", &js) | |
841 call append("$", "nrformats\t\"alpha\", \"octal\" and/or \"hex\"; number formats recognized for") | |
842 call append("$", "\tCTRL-A and CTRL-X commands") | |
843 call append("$", "\t(local to buffer)") | |
844 call <SID>OptionL("nf") | |
845 | |
846 | |
847 call <SID>Header("tabs and indenting") | |
848 call append("$", "tabstop\tnumber of spaces a <Tab> in the text stands for") | |
849 call append("$", "\t(local to buffer)") | |
850 call <SID>OptionL("ts") | |
851 call append("$", "shiftwidth\tnumber of spaces used for each step of (auto)indent") | |
852 call append("$", "\t(local to buffer)") | |
853 call <SID>OptionL("sw") | |
14175
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
854 if has("vartabs") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
855 call append("$", "vartabstop\tlist of number of spaces a tab counts for") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
856 call append("$", "\t(local to buffer)") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
857 call <SID>OptionL("vts") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
858 call append("$", "varsofttabstop\tlist of number of spaces a soft tabsstop counts for") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
859 call append("$", "\t(local to buffer)") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
860 call <SID>OptionL("vsts") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
861 endif |
7 | 862 call append("$", "smarttab\ta <Tab> in an indent inserts 'shiftwidth' spaces") |
863 call <SID>BinOptionG("sta", &sta) | |
864 call append("$", "softtabstop\tif non-zero, number of spaces to insert for a <Tab>") | |
865 call append("$", "\t(local to buffer)") | |
866 call <SID>OptionL("sts") | |
867 call append("$", "shiftround\tround to 'shiftwidth' for \"<<\" and \">>\"") | |
868 call <SID>BinOptionG("sr", &sr) | |
869 call append("$", "expandtab\texpand <Tab> to spaces in Insert mode") | |
870 call append("$", "\t(local to buffer)") | |
871 call <SID>BinOptionL("et") | |
872 call append("$", "autoindent\tautomatically set the indent of a new line") | |
873 call append("$", "\t(local to buffer)") | |
874 call <SID>BinOptionL("ai") | |
875 if has("smartindent") | |
876 call append("$", "smartindent\tdo clever autoindenting") | |
877 call append("$", "\t(local to buffer)") | |
878 call <SID>BinOptionL("si") | |
879 endif | |
880 if has("cindent") | |
881 call append("$", "cindent\tenable specific indenting for C code") | |
882 call append("$", "\t(local to buffer)") | |
883 call <SID>BinOptionL("cin") | |
884 call append("$", "cinoptions\toptions for C-indenting") | |
885 call append("$", "\t(local to buffer)") | |
886 call <SID>OptionL("cino") | |
887 call append("$", "cinkeys\tkeys that trigger C-indenting in Insert mode") | |
888 call append("$", "\t(local to buffer)") | |
889 call <SID>OptionL("cink") | |
890 call append("$", "cinwords\tlist of words that cause more C-indent") | |
891 call append("$", "\t(local to buffer)") | |
892 call <SID>OptionL("cinw") | |
893 call append("$", "indentexpr\texpression used to obtain the indent of a line") | |
894 call append("$", "\t(local to buffer)") | |
895 call <SID>OptionL("inde") | |
896 call append("$", "indentkeys\tkeys that trigger indenting with 'indentexpr' in Insert mode") | |
897 call append("$", "\t(local to buffer)") | |
898 call <SID>OptionL("indk") | |
899 endif | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
900 call append("$", "copyindent\tcopy whitespace for indenting from previous line") |
7 | 901 call append("$", "\t(local to buffer)") |
902 call <SID>BinOptionL("ci") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
903 call append("$", "preserveindent\tpreserve kind of whitespace when changing indent") |
7 | 904 call append("$", "\t(local to buffer)") |
905 call <SID>BinOptionL("pi") | |
906 if has("lispindent") | |
907 call append("$", "lisp\tenable lisp mode") | |
908 call append("$", "\t(local to buffer)") | |
909 call <SID>BinOptionL("lisp") | |
910 call append("$", "lispwords\twords that change how lisp indenting works") | |
5772 | 911 call <SID>OptionL("lw") |
7 | 912 endif |
913 | |
914 | |
915 if has("folding") | |
916 call <SID>Header("folding") | |
917 call append("$", "foldenable\tset to display all folds open") | |
918 call append("$", "\t(local to window)") | |
919 call <SID>BinOptionL("fen") | |
920 call append("$", "foldlevel\tfolds with a level higher than this number will be closed") | |
921 call append("$", "\t(local to window)") | |
922 call <SID>OptionL("fdl") | |
923 call append("$", "foldlevelstart\tvalue for 'foldlevel' when starting to edit a file") | |
924 call append("$", " \tset fdls=" . &fdls) | |
925 call append("$", "foldcolumn\twidth of the column used to indicate folds") | |
926 call append("$", "\t(local to window)") | |
927 call <SID>OptionL("fdc") | |
928 call append("$", "foldtext\texpression used to display the text of a closed fold") | |
929 call append("$", "\t(local to window)") | |
930 call <SID>OptionL("fdt") | |
931 call append("$", "foldclose\tset to \"all\" to close a fold when the cursor leaves it") | |
932 call <SID>OptionG("fcl", &fcl) | |
933 call append("$", "foldopen\tspecifies for which commands a fold will be opened") | |
934 call <SID>OptionG("fdo", &fdo) | |
935 call append("$", "foldminlines\tminimum number of screen lines for a fold to be closed") | |
936 call append("$", "\t(local to window)") | |
937 call <SID>OptionL("fml") | |
938 call append("$", "commentstring\ttemplate for comments; used to put the marker in") | |
939 call <SID>OptionL("cms") | |
940 call append("$", "foldmethod\tfolding type: \"manual\", \"indent\", \"expr\", \"marker\" or \"syntax\"") | |
941 call append("$", "\t(local to window)") | |
942 call <SID>OptionL("fdm") | |
943 call append("$", "foldexpr\texpression used when 'foldmethod' is \"expr\"") | |
944 call append("$", "\t(local to window)") | |
945 call <SID>OptionL("fde") | |
946 call append("$", "foldignore\tused to ignore lines when 'foldmethod' is \"indent\"") | |
947 call append("$", "\t(local to window)") | |
948 call <SID>OptionL("fdi") | |
949 call append("$", "foldmarker\tmarkers used when 'foldmethod' is \"marker\"") | |
950 call append("$", "\t(local to window)") | |
951 call <SID>OptionL("fmr") | |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
952 call append("$", "foldnestmax\tmaximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\"") |
7 | 953 call append("$", "\t(local to window)") |
954 call <SID>OptionL("fdn") | |
955 endif | |
956 | |
957 | |
958 if has("diff") | |
959 call <SID>Header("diff mode") | |
960 call append("$", "diff\tuse diff mode for the current window") | |
961 call append("$", "\t(local to window)") | |
962 call <SID>BinOptionL("diff") | |
963 call append("$", "diffopt\toptions for using diff mode") | |
964 call <SID>OptionG("dip", &dip) | |
965 call append("$", "diffexpr\texpression used to obtain a diff file") | |
966 call <SID>OptionG("dex", &dex) | |
967 call append("$", "patchexpr\texpression used to patch a file") | |
968 call <SID>OptionG("pex", &pex) | |
969 endif | |
970 | |
971 | |
972 call <SID>Header("mapping") | |
973 call append("$", "maxmapdepth\tmaximum depth of mapping") | |
974 call append("$", " \tset mmd=" . &mmd) | |
975 call append("$", "remap\trecognize mappings in mapped keys") | |
976 call <SID>BinOptionG("remap", &remap) | |
977 call append("$", "timeout\tallow timing out halfway into a mapping") | |
978 call <SID>BinOptionG("to", &to) | |
979 call append("$", "ttimeout\tallow timing out halfway into a key code") | |
980 call <SID>BinOptionG("ttimeout", &ttimeout) | |
981 call append("$", "timeoutlen\ttime in msec for 'timeout'") | |
982 call append("$", " \tset tm=" . &tm) | |
983 call append("$", "ttimeoutlen\ttime in msec for 'ttimeout'") | |
984 call append("$", " \tset ttm=" . &ttm) | |
985 | |
986 | |
987 call <SID>Header("reading and writing files") | |
988 call append("$", "modeline\tenable using settings from modelines when reading a file") | |
989 call append("$", "\t(local to buffer)") | |
990 call <SID>BinOptionL("ml") | |
991 call append("$", "modelines\tnumber of lines to check for modelines") | |
992 call append("$", " \tset mls=" . &mls) | |
993 call append("$", "binary\tbinary file editing") | |
994 call append("$", "\t(local to buffer)") | |
995 call <SID>BinOptionL("bin") | |
996 call append("$", "endofline\tlast line in the file has an end-of-line") | |
997 call append("$", "\t(local to buffer)") | |
998 call <SID>BinOptionL("eol") | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6933
diff
changeset
|
999 call append("$", "fixendofline\tfixes missing end-of-line at end of text file") |
6933 | 1000 call append("$", "\t(local to buffer)") |
1001 call <SID>BinOptionL("fixeol") | |
15870
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1002 call append("$", "bomb\tprepend a Byte Order Mark to the file") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1003 call append("$", "\t(local to buffer)") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1004 call <SID>BinOptionL("bomb") |
7 | 1005 call append("$", "fileformat\tend-of-line format: \"dos\", \"unix\" or \"mac\"") |
1006 call append("$", "\t(local to buffer)") | |
1007 call <SID>OptionL("ff") | |
1008 call append("$", "fileformats\tlist of file formats to look for when editing a file") | |
1009 call <SID>OptionG("ffs", &ffs) | |
1010 call append("$", "textmode\tobsolete, use 'fileformat'") | |
1011 call append("$", "\t(local to buffer)") | |
1012 call <SID>BinOptionL("tx") | |
1013 call append("$", "textauto\tobsolete, use 'fileformats'") | |
1014 call <SID>BinOptionG("ta", &ta) | |
1015 call append("$", "write\twriting files is allowed") | |
1016 call <SID>BinOptionG("write", &write) | |
1017 call append("$", "writebackup\twrite a backup file before overwriting a file") | |
1018 call <SID>BinOptionG("wb", &wb) | |
1019 call append("$", "backup\tkeep a backup after overwriting a file") | |
1020 call <SID>BinOptionG("bk", &bk) | |
1021 call append("$", "backupskip\tpatterns that specify for which files a backup is not made") | |
1022 call append("$", " \tset bsk=" . &bsk) | |
1023 call append("$", "backupcopy\twhether to make the backup as a copy or rename the existing file") | |
6292
31f7581068a9
Update runtime files and translations.
Bram Moolenaar <bram@vim.org>
parents:
6153
diff
changeset
|
1024 call append("$", "\t(global or local to buffer)") |
7 | 1025 call append("$", " \tset bkc=" . &bkc) |
1026 call append("$", "backupdir\tlist of directories to put backup files in") | |
1027 call <SID>OptionG("bdir", &bdir) | |
1028 call append("$", "backupext\tfile name extension for the backup file") | |
1029 call <SID>OptionG("bex", &bex) | |
1030 call append("$", "autowrite\tautomatically write a file when leaving a modified buffer") | |
1031 call <SID>BinOptionG("aw", &aw) | |
1032 call append("$", "autowriteall\tas 'autowrite', but works with more commands") | |
1033 call <SID>BinOptionG("awa", &awa) | |
1034 call append("$", "writeany\talways write without asking for confirmation") | |
1035 call <SID>BinOptionG("wa", &wa) | |
1036 call append("$", "autoread\tautomatically read a file when it was modified outside of Vim") | |
1037 call append("$", "\t(global or local to buffer)") | |
1038 call <SID>BinOptionG("ar", &ar) | |
1039 call append("$", "patchmode\tkeep oldest version of a file; specifies file name extension") | |
1040 call <SID>OptionG("pm", &pm) | |
36 | 1041 call append("$", "fsync\tforcibly sync the file to disk after writing it") |
1042 call <SID>BinOptionG("fs", &fs) | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1043 call append("$", "shortname\tuse 8.3 file names") |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1044 call append("$", "\t(local to buffer)") |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1045 call <SID>BinOptionL("sn") |
2398 | 1046 call append("$", "cryptmethod\tencryption method for file writing: zip or blowfish") |
2198
e741fe7a0547
Updated a few runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1047 call append("$", "\t(local to buffer)") |
e741fe7a0547
Updated a few runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1048 call <SID>OptionL("cm") |
7 | 1049 |
1050 | |
1051 call <SID>Header("the swap file") | |
1052 call append("$", "directory\tlist of directories for the swap file") | |
1053 call <SID>OptionG("dir", &dir) | |
1054 call append("$", "swapfile\tuse a swap file for this buffer") | |
1055 call append("$", "\t(local to buffer)") | |
1056 call <SID>BinOptionL("swf") | |
1057 call append("$", "swapsync\t\"sync\", \"fsync\" or empty; how to flush a swap file to disk") | |
1058 call <SID>OptionG("sws", &sws) | |
1059 call append("$", "updatecount\tnumber of characters typed to cause a swap file update") | |
1060 call append("$", " \tset uc=" . &uc) | |
1061 call append("$", "updatetime\ttime in msec after which the swap file will be updated") | |
1062 call append("$", " \tset ut=" . &ut) | |
1063 call append("$", "maxmem\tmaximum amount of memory in Kbyte used for one buffer") | |
1064 call append("$", " \tset mm=" . &mm) | |
1065 call append("$", "maxmemtot\tmaximum amount of memory in Kbyte used for all buffers") | |
1066 call append("$", " \tset mmt=" . &mmt) | |
1067 | |
1068 | |
1069 call <SID>Header("command line editing") | |
1070 call append("$", "history\thow many command lines are remembered ") | |
1071 call append("$", " \tset hi=" . &hi) | |
1072 call append("$", "wildchar\tkey that triggers command-line expansion") | |
1073 call append("$", " \tset wc=" . &wc) | |
1074 call append("$", "wildcharm\tlike 'wildchar' but can also be used in a mapping") | |
1075 call append("$", " \tset wcm=" . &wcm) | |
1076 call append("$", "wildmode\tspecifies how command line completion works") | |
1077 call <SID>OptionG("wim", &wim) | |
40 | 1078 if has("wildoptions") |
1079 call append("$", "wildoptions\tempty or \"tagfile\" to list file name of matching tags") | |
1080 call <SID>OptionG("wop", &wop) | |
1081 endif | |
7 | 1082 call append("$", "suffixes\tlist of file name extensions that have a lower priority") |
1083 call <SID>OptionG("su", &su) | |
1084 if has("file_in_path") | |
1085 call append("$", "suffixesadd\tlist of file name extensions added when searching for a file") | |
1086 call append("$", "\t(local to buffer)") | |
1087 call <SID>OptionL("sua") | |
1088 endif | |
1089 if has("wildignore") | |
1090 call append("$", "wildignore\tlist of patterns to ignore files for file name completion") | |
1091 call <SID>OptionG("wig", &wig) | |
1092 endif | |
4254 | 1093 call append("$", "fileignorecase\tignore case when using file names") |
1094 call <SID>BinOptionG("fic", &fic) | |
2662 | 1095 call append("$", "wildignorecase\tignore case when completing file names") |
1096 call <SID>BinOptionG("wic", &wic) | |
7 | 1097 if has("wildmenu") |
1098 call append("$", "wildmenu\tcommand-line completion shows a list of matches") | |
1099 call <SID>BinOptionG("wmnu", &wmnu) | |
1100 endif | |
15729 | 1101 call append("$", "cedit\tkey used to open the command-line window") |
1102 call <SID>OptionG("cedit", &cedit) | |
1103 call append("$", "cmdwinheight\theight of the command-line window") | |
1104 call <SID>OptionG("cwh", &cwh) | |
7 | 1105 |
1106 | |
1107 call <SID>Header("executing external commands") | |
1108 call append("$", "shell\tname of the shell program used for external commands") | |
1109 call <SID>OptionG("sh", &sh) | |
1110 if has("amiga") | |
1111 call append("$", "shelltype\twhen to use the shell or directly execute a command") | |
1112 call append("$", " \tset st=" . &st) | |
1113 endif | |
1114 call append("$", "shellquote\tcharacter(s) to enclose a shell command in") | |
1115 call <SID>OptionG("shq", &shq) | |
1116 call append("$", "shellxquote\tlike 'shellquote' but include the redirection") | |
1117 call <SID>OptionG("sxq", &sxq) | |
3371 | 1118 call append("$", "shellxescape\tcharacters to escape when 'shellxquote' is (") |
1119 call <SID>OptionG("sxe", &sxe) | |
7 | 1120 call append("$", "shellcmdflag\targument for 'shell' to execute a command") |
1121 call <SID>OptionG("shcf", &shcf) | |
1122 call append("$", "shellredir\tused to redirect command output to a file") | |
1123 call <SID>OptionG("srr", &srr) | |
393 | 1124 call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe") |
1125 call <SID>BinOptionG("stmp", &stmp) | |
7 | 1126 call append("$", "equalprg\tprogram used for \"=\" command") |
1127 call append("$", "\t(global or local to buffer)") | |
1128 call <SID>OptionG("ep", &ep) | |
1129 call append("$", "formatprg\tprogram used to format lines with \"gq\" command") | |
1130 call <SID>OptionG("fp", &fp) | |
1131 call append("$", "keywordprg\tprogram used for the \"K\" command") | |
1132 call <SID>OptionG("kp", &kp) | |
1133 call append("$", "warn\twarn when using a shell command and a buffer has changes") | |
1134 call <SID>BinOptionG("warn", &warn) | |
1135 | |
1136 | |
1137 if has("quickfix") | |
1138 call <SID>Header("running make and jumping to errors") | |
1139 call append("$", "errorfile\tname of the file that contains error messages") | |
1140 call <SID>OptionG("ef", &ef) | |
1141 call append("$", "errorformat\tlist of formats for error messages") | |
1142 call append("$", "\t(global or local to buffer)") | |
1143 call <SID>OptionG("efm", &efm) | |
1144 call append("$", "makeprg\tprogram used for the \":make\" command") | |
1145 call append("$", "\t(global or local to buffer)") | |
1146 call <SID>OptionG("mp", &mp) | |
1147 call append("$", "shellpipe\tstring used to put the output of \":make\" in the error file") | |
1148 call <SID>OptionG("sp", &sp) | |
1149 call append("$", "makeef\tname of the errorfile for the 'makeprg' command") | |
1150 call <SID>OptionG("mef", &mef) | |
1151 call append("$", "grepprg\tprogram used for the \":grep\" command") | |
1152 call append("$", "\t(global or local to buffer)") | |
1153 call <SID>OptionG("gp", &gp) | |
1154 call append("$", "grepformat\tlist of formats for output of 'grepprg'") | |
1155 call <SID>OptionG("gfm", &gfm) | |
11077
746c1e1be45f
patch 8.0.0427: 'makeencoding' missing from the options window
Christian Brabandt <cb@256bit.org>
parents:
10895
diff
changeset
|
1156 call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output") |
746c1e1be45f
patch 8.0.0427: 'makeencoding' missing from the options window
Christian Brabandt <cb@256bit.org>
parents:
10895
diff
changeset
|
1157 call append("$", "\t(global or local to buffer)") |
746c1e1be45f
patch 8.0.0427: 'makeencoding' missing from the options window
Christian Brabandt <cb@256bit.org>
parents:
10895
diff
changeset
|
1158 call <SID>OptionG("menc", &menc) |
7 | 1159 endif |
1160 | |
1161 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1162 if has("win32") || has("osfiletype") |
7 | 1163 call <SID>Header("system specific") |
1164 if has("osfiletype") | |
1165 call append("$", "osfiletype\tOS-specific information about the type of file") | |
1166 call append("$", "\t(local to buffer)") | |
1167 call <SID>OptionL("oft") | |
1168 endif | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1169 if has("win32") |
7 | 1170 call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") |
1171 call <SID>BinOptionG("ssl", &ssl) | |
1172 endif | |
1173 endif | |
1174 | |
1175 | |
1176 call <SID>Header("language specific") | |
1177 call append("$", "isfname\tspecifies the characters in a file name") | |
1178 call <SID>OptionG("isf", &isf) | |
1179 call append("$", "isident\tspecifies the characters in an identifier") | |
1180 call <SID>OptionG("isi", &isi) | |
1181 call append("$", "iskeyword\tspecifies the characters in a keyword") | |
1182 call append("$", "\t(local to buffer)") | |
1183 call <SID>OptionL("isk") | |
1184 call append("$", "isprint\tspecifies printable characters") | |
1185 call <SID>OptionG("isp", &isp) | |
12 | 1186 if has("textobjects") |
1187 call append("$", "quoteescape\tspecifies escape characters in a string") | |
1188 call append("$", "\t(local to buffer)") | |
1189 call <SID>OptionL("qe") | |
1190 endif | |
7 | 1191 if has("rightleft") |
1192 call append("$", "rightleft\tdisplay the buffer right-to-left") | |
1193 call append("$", "\t(local to window)") | |
1194 call <SID>BinOptionL("rl") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1195 call append("$", "rightleftcmd\twhen to edit the command-line right-to-left") |
7 | 1196 call append("$", "\t(local to window)") |
1197 call <SID>OptionL("rlc") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1198 call append("$", "revins\tinsert characters backwards") |
7 | 1199 call <SID>BinOptionG("ri", &ri) |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1200 call append("$", "allowrevins\tallow CTRL-_ in Insert and Command-line mode to toggle 'revins'") |
7 | 1201 call <SID>BinOptionG("ari", &ari) |
1202 call append("$", "aleph\tthe ASCII code for the first letter of the Hebrew alphabet") | |
1203 call append("$", " \tset al=" . &al) | |
1204 call append("$", "hkmap\tuse Hebrew keyboard mapping") | |
1205 call <SID>BinOptionG("hk", &hk) | |
1206 call append("$", "hkmapp\tuse phonetic Hebrew keyboard mapping") | |
1207 call <SID>BinOptionG("hkp", &hkp) | |
1208 endif | |
1209 if has("farsi") | |
1210 call append("$", "altkeymap\tuse Farsi as the second language when 'revins' is set") | |
1211 call <SID>BinOptionG("akm", &akm) | |
1212 call append("$", "fkmap\tuse Farsi keyboard mapping") | |
1213 call <SID>BinOptionG("fk", &fk) | |
1214 endif | |
1215 if has("arabic") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1216 call append("$", "arabic\tprepare for editing Arabic text") |
7 | 1217 call append("$", "\t(local to window)") |
1218 call <SID>BinOptionL("arab") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1219 call append("$", "arabicshape\tperform shaping of Arabic characters") |
7 | 1220 call <SID>BinOptionG("arshape", &arshape) |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1221 call append("$", "termbidi\tterminal will perform bidi handling") |
7 | 1222 call <SID>BinOptionG("tbidi", &tbidi) |
1223 endif | |
1224 if has("keymap") | |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1225 call append("$", "keymap\tname of a keyboard mapping") |
7 | 1226 call <SID>OptionL("kmp") |
1227 endif | |
1228 if has("langmap") | |
6385 | 1229 call append("$", "langmap\tlist of characters that are translated in Normal mode") |
7 | 1230 call <SID>OptionG("lmap", &lmap) |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
1231 call append("$", "langremap\tapply 'langmap' to mapped characters") |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
1232 call <SID>BinOptionG("lrm", &lrm) |
7 | 1233 endif |
1234 if has("xim") | |
1235 call append("$", "imdisable\twhen set never use IM; overrules following IM options") | |
1236 call <SID>BinOptionG("imd", &imd) | |
1237 endif | |
1238 call append("$", "iminsert\tin Insert mode: 1: use :lmap; 2: use IM; 0: neither") | |
1239 call append("$", "\t(local to window)") | |
1240 call <SID>OptionL("imi") | |
12499 | 1241 call append("$", "imstyle\tinput method style, 0: on-the-spot, 1: over-the-spot") |
1242 call <SID>OptionG("imst", &imst) | |
7 | 1243 call append("$", "imsearch\tentering a search pattern: 1: use :lmap; 2: use IM; 0: neither") |
1244 call append("$", "\t(local to window)") | |
1245 call <SID>OptionL("ims") | |
1246 if has("xim") | |
1247 call append("$", "imcmdline\twhen set always use IM when starting to edit a command line") | |
1248 call <SID>BinOptionG("imc", &imc) | |
5055 | 1249 call append("$", "imstatusfunc\tfunction to obtain IME status") |
1250 call <SID>OptionG("imsf", &imsf) | |
1251 call append("$", "imactivatefunc\tfunction to enable/disable IME") | |
1252 call <SID>OptionG("imaf", &imaf) | |
7 | 1253 endif |
1254 | |
1255 | |
15870
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1256 call <SID>Header("multi-byte characters") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1257 call append("$", "encoding\tcharacter encoding used in Vim: \"latin1\", \"utf-8\"") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1258 call append("$", "\t\"euc-jp\", \"big5\", etc.") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1259 call <SID>OptionG("enc", &enc) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1260 call append("$", "fileencoding\tcharacter encoding for the current file") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1261 call append("$", "\t(local to buffer)") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1262 call <SID>OptionL("fenc") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1263 call append("$", "fileencodings\tautomatically detected character encodings") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1264 call <SID>OptionG("fencs", &fencs) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1265 call append("$", "termencoding\tcharacter encoding used by the terminal") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1266 call <SID>OptionG("tenc", &tenc) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1267 call append("$", "charconvert\texpression used for character encoding conversion") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1268 call <SID>OptionG("ccv", &ccv) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1269 call append("$", "delcombine\tdelete combining (composing) characters on their own") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1270 call <SID>BinOptionG("deco", &deco) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1271 call append("$", "maxcombine\tmaximum number of combining (composing) characters displayed") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1272 call <SID>OptionG("mco", &mco) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1273 if has("xim") && has("gui_gtk") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1274 call append("$", "imactivatekey\tkey that activates the X input method") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1275 call <SID>OptionG("imak", &imak) |
7 | 1276 endif |
15870
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1277 call append("$", "ambiwidth\twidth of ambiguous width characters") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1278 call <SID>OptionG("ambw", &ambw) |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1279 call append("$", "emoji\temoji characters are full width") |
df0426d67bb3
patch 8.1.0942: options window still checks for the multi_byte feature
Bram Moolenaar <Bram@vim.org>
parents:
15746
diff
changeset
|
1280 call <SID>BinOptionG("emo", &emo) |
7 | 1281 |
1282 | |
1283 call <SID>Header("various") | |
15729 | 1284 call append("$", "virtualedit\twhen to use virtual editing: \"block\", \"insert\" and/or \"all\"") |
1285 call <SID>OptionG("ve", &ve) | |
1286 call append("$", "eventignore\tlist of autocommand events which are to be ignored") | |
1287 call <SID>OptionG("ei", &ei) | |
7 | 1288 call append("$", "loadplugins\tload plugin scripts when starting up") |
1289 call <SID>BinOptionG("lpl", &lpl) | |
1290 call append("$", "exrc\tenable reading .vimrc/.exrc/.gvimrc in the current directory") | |
1291 call <SID>BinOptionG("ex", &ex) | |
1292 call append("$", "secure\tsafer working with script files in the current directory") | |
1293 call <SID>BinOptionG("secure", &secure) | |
1294 call append("$", "gdefault\tuse the 'g' flag for \":substitute\"") | |
1295 call <SID>BinOptionG("gd", &gd) | |
1296 call append("$", "edcompatible\t'g' and 'c' flags of \":substitute\" toggle") | |
1297 call <SID>BinOptionG("ed", &ed) | |
1120 | 1298 if exists("+opendevice") |
1299 call append("$", "opendevice\tallow reading/writing devices") | |
1300 call <SID>BinOptionG("odev", &odev) | |
1301 endif | |
1302 if exists("+maxfuncdepth") | |
7 | 1303 call append("$", "maxfuncdepth\tmaximum depth of function calls") |
1304 call append("$", " \tset mfd=" . &mfd) | |
1120 | 1305 endif |
7 | 1306 if has("mksession") |
1307 call append("$", "sessionoptions\tlist of words that specifies what to put in a session file") | |
1308 call <SID>OptionG("ssop", &ssop) | |
1309 call append("$", "viewoptions\tlist of words that specifies what to save for :mkview") | |
1310 call <SID>OptionG("vop", &vop) | |
1311 call append("$", "viewdir\tdirectory where to store files with :mkview") | |
1312 call <SID>OptionG("vdir", &vdir) | |
1313 endif | |
1314 if has("viminfo") | |
1315 call append("$", "viminfo\tlist that specifies what to write in the viminfo file") | |
1316 call <SID>OptionG("vi", &vi) | |
11914 | 1317 call append("$", "viminfofile\tfile name used for the viminfo file") |
1318 call <SID>OptionG("vif", &vif) | |
7 | 1319 endif |
1320 if has("quickfix") | |
1321 call append("$", "bufhidden\twhat happens with a buffer when it's no longer in a window") | |
1322 call append("$", "\t(local to buffer)") | |
1323 call <SID>OptionL("bh") | |
1324 call append("$", "buftype\t\"\", \"nofile\", \"nowrite\" or \"quickfix\": type of buffer") | |
1325 call append("$", "\t(local to buffer)") | |
1326 call <SID>OptionL("bt") | |
1327 endif | |
1328 call append("$", "buflisted\twhether the buffer shows up in the buffer list") | |
1329 call append("$", "\t(local to buffer)") | |
1330 call <SID>BinOptionL("bl") | |
1331 call append("$", "debug\tset to \"msg\" to see all error messages") | |
1332 call append("$", " \tset debug=" . &debug) | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1333 if has("signs") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1334 call append("$", "signcolumn\twhether to show the signcolumn") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1335 call append("$", "\t(local to window)") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1336 call <SID>OptionL("scl") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1337 endif |
14 | 1338 if has("mzscheme") |
1339 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") | |
1340 call append("$", " \tset mzq=" . &mzq) | |
1341 endif | |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1342 if exists("&luadll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1343 call append("$", "luadll\tname of the Lua dynamic library") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1344 call <SID>OptionG("luadll", &luadll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1345 endif |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1346 if exists("&perldll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1347 call append("$", "perldll\tname of the Perl dynamic library") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1348 call <SID>OptionG("perldll", &perldll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1349 endif |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
1350 if has('pythonx') |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
1351 call append("$", "pyxversion\twhether to use Python 2 or 3") |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
1352 call append("$", " \tset pyx=" . &wd) |
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
1353 endif |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1354 if exists("&pythondll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1355 call append("$", "pythondll\tname of the Python 2 dynamic library") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1356 call <SID>OptionG("pythondll", &pythondll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1357 endif |
13154
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1358 if exists("&pythonhome") |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1359 call append("$", "pythonhome\tname of the Python 2 home directory") |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1360 call <SID>OptionG("pythonhome", &pythonhome) |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1361 endif |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1362 if exists("&pythonthreedll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1363 call append("$", "pythonthreedll\tname of the Python 3 dynamic library") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1364 call <SID>OptionG("pythonthreedll", &pythonthreedll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1365 endif |
13154
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1366 if exists("&pythonthreehome") |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1367 call append("$", "pythonthreehome\tname of the Python 3 home directory") |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1368 call <SID>OptionG("pythonthreehome", &pythonthreehome) |
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1369 endif |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1370 if exists("&rubydll") |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1371 call append("$", "rubydll\tname of the Ruby dynamic library") |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1372 call <SID>OptionG("rubydll", &rubydll) |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1373 endif |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1374 if exists("&tcldll") |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1375 call append("$", "tcldll\tname of the Tcl dynamic library") |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1376 call <SID>OptionG("tcldll", &tcldll) |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1377 endif |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1378 if exists("&mzschemedll") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1379 call append("$", "mzschemedll\tname of the Tcl dynamic library") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1380 call <SID>OptionG("mzschemedll", &mzschemedll) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1381 call append("$", "mzschemegcdll\tname of the Tcl GC dynamic library") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1382 call <SID>OptionG("mzschemegcdll", &mzschemegcdll) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1383 endif |
7 | 1384 |
1385 set cpo&vim | |
1386 | |
1387 " go to first line | |
1388 1 | |
1389 | |
1390 " reset 'modified', so that ":q" can be used to close the window | |
1391 setlocal nomodified | |
1392 | |
1393 if has("syntax") | |
1394 " Use Vim highlighting, with some additional stuff | |
1395 setlocal ft=vim | |
1396 syn match optwinHeader "^ \=[0-9].*" | |
1397 syn match optwinName "^[a-z]*\t" nextgroup=optwinComment | |
1398 syn match optwinComment ".*" contained | |
1399 syn match optwinComment "^\t.*" | |
1400 if !exists("did_optwin_syntax_inits") | |
1401 let did_optwin_syntax_inits = 1 | |
1402 hi link optwinHeader Title | |
1403 hi link optwinName Identifier | |
1404 hi link optwinComment Comment | |
1405 endif | |
1406 endif | |
1407 | |
1408 " Install autocommands to enable mappings in option-window | |
1409 noremap <silent> <buffer> <CR> <C-\><C-N>:call <SID>CR()<CR> | |
1410 inoremap <silent> <buffer> <CR> <Esc>:call <SID>CR()<CR> | |
1411 noremap <silent> <buffer> <Space> :call <SID>Space()<CR> | |
1412 | |
1413 " Make the buffer be deleted when the window is closed. | |
1414 setlocal buftype=nofile bufhidden=delete noswapfile | |
1415 | |
1416 augroup optwin | |
1417 au! BufUnload,BufHidden option-window nested | |
1418 \ call <SID>unload() | delfun <SID>unload | |
1419 augroup END | |
1420 | |
1421 fun! <SID>unload() | |
1422 delfun <SID>CR | |
1423 delfun <SID>Space | |
1424 delfun <SID>Find | |
1425 delfun <SID>Update | |
1426 delfun <SID>OptionL | |
1427 delfun <SID>OptionG | |
1428 delfun <SID>BinOptionL | |
1429 delfun <SID>BinOptionG | |
1430 delfun <SID>Header | |
1431 au! optwin | |
1432 endfun | |
1433 | |
1434 " Restore the previous value of 'title' and 'icon'. | |
1435 let &title = s:old_title | |
1436 let &icon = s:old_icon | |
1437 let &ru = s:old_ru | |
1438 let &sc = s:old_sc | |
1439 let &cpo = s:cpo_save | |
13346
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
1440 let &ul = s:old_ul |
4dbf2a6972e6
patch 8.0.1547: undo in the options window makes it empty
Christian Brabandt <cb@256bit.org>
parents:
13341
diff
changeset
|
1441 unlet s:old_title s:old_icon s:old_ru s:old_sc s:cpo_save s:idx s:lnum s:old_ul |
2908 | 1442 |
1443 " vim: ts=8 sw=2 sts=2 |