Mercurial > vim
annotate runtime/optwin.vim @ 17614:d7708560b77c v8.1.1804
patch 8.1.1804: no test for display updating without a scroll region
commit https://github.com/vim/vim/commit/3c8ee629745737aa231fdd123826ae021e398e49
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 3 22:55:50 2019 +0200
patch 8.1.1804: no test for display updating without a scroll region
Problem: No test for display updating without a scroll region.
Solution: Add a test.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 03 Aug 2019 23:00:06 +0200 |
parents | ca8e754bdd53 |
children | 95c23e180022 |
rev | line source |
---|---|
7 | 1 " These commands create the option window. |
2 " | |
3 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
17433 | 4 " Last Change: 2019 Jul 18 |
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) | |
16808 | 418 call append("$", "wincolor\thighlight group to use for the window") |
419 call append("$", "\t(local to window)") | |
420 call <SID>OptionL("wcr") | |
9046
057fb9d0191b
commit https://github.com/vim/vim/commit/8a24b794b89916c8074892e7b25121a21f1fa9c9
Christian Brabandt <cb@256bit.org>
parents:
9042
diff
changeset
|
421 if has("termguicolors") |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
8962
diff
changeset
|
422 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
|
423 call <SID>BinOptionG("tgc", &tgc) |
9042
21bd2230c5cd
commit https://github.com/vim/vim/commit/8e3d1b6326c103cc92f8d07b1161ee5172acf201
Christian Brabandt <cb@256bit.org>
parents:
8962
diff
changeset
|
424 endif |
381 | 425 if has("syntax") |
737 | 426 call append("$", "cursorcolumn\thighlight the screen column of the cursor") |
427 call append("$", "\t(local to window)") | |
428 call <SID>BinOptionL("cuc") | |
429 call append("$", "cursorline\thighlight the screen line of the cursor") | |
430 call append("$", "\t(local to window)") | |
431 call <SID>BinOptionL("cul") | |
2341 | 432 call append("$", "colorcolumn\tcolumns to highlight") |
433 call append("$", "\t(local to window)") | |
434 call <SID>OptionL("cc") | |
381 | 435 call append("$", "spell\thighlight spelling mistakes") |
436 call append("$", "\t(local to window)") | |
437 call <SID>BinOptionL("spell") | |
438 call append("$", "spelllang\tlist of accepted languages") | |
439 call append("$", "\t(local to buffer)") | |
440 call <SID>OptionL("spl") | |
441 call append("$", "spellfile\tfile that \"zg\" adds good words to") | |
442 call append("$", "\t(local to buffer)") | |
443 call <SID>OptionL("spf") | |
393 | 444 call append("$", "spellcapcheck\tpattern to locate the end of a sentence") |
445 call append("$", "\t(local to buffer)") | |
446 call <SID>OptionL("spc") | |
381 | 447 call append("$", "spellsuggest\tmethods used to suggest corrections") |
448 call <SID>OptionG("sps", &sps) | |
500 | 449 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing") |
450 call <SID>OptionG("msm", &msm) | |
381 | 451 endif |
7 | 452 |
453 | |
454 call <SID>Header("multiple windows") | |
455 call append("$", "laststatus\t0, 1 or 2; when to use a status line for the last window") | |
456 call append("$", " \tset ls=" . &ls) | |
457 if has("statusline") | |
458 call append("$", "statusline\talternate format to be used for a status line") | |
459 call <SID>OptionG("stl", &stl) | |
460 endif | |
461 call append("$", "equalalways\tmake all windows the same size when adding/removing windows") | |
462 call <SID>BinOptionG("ea", &ea) | |
15729 | 463 call append("$", "eadirection\tin which direction 'equalalways' works: \"ver\", \"hor\" or \"both\"") |
464 call <SID>OptionG("ead", &ead) | |
7 | 465 call append("$", "winheight\tminimal number of lines used for the current window") |
466 call append("$", " \tset wh=" . &wh) | |
467 call append("$", "winminheight\tminimal number of lines used for any window") | |
468 call append("$", " \tset wmh=" . &wmh) | |
469 call append("$", "winfixheight\tkeep the height of the window") | |
470 call append("$", "\t(local to window)") | |
471 call <SID>BinOptionL("wfh") | |
779 | 472 call append("$", "winfixwidth\tkeep the width of the window") |
473 call append("$", "\t(local to window)") | |
474 call <SID>BinOptionL("wfw") | |
15729 | 475 call append("$", "winwidth\tminimal number of columns used for the current window") |
476 call append("$", " \tset wiw=" . &wiw) | |
477 call append("$", "winminwidth\tminimal number of columns used for any window") | |
478 call append("$", " \tset wmw=" . &wmw) | |
7 | 479 call append("$", "helpheight\tinitial height of the help window") |
480 call append("$", " \tset hh=" . &hh) | |
481 if has("quickfix") | |
17433 | 482 call append("$", "previewpopup\tuse a popup window for preview") |
483 call append("$", " \tset pvp=" . &pvp) | |
7 | 484 call append("$", "previewheight\tdefault height for the preview window") |
485 call append("$", " \tset pvh=" . &pvh) | |
486 call append("$", "previewwindow\tidentifies the preview window") | |
487 call append("$", "\t(local to window)") | |
488 call <SID>BinOptionL("pvw") | |
489 endif | |
490 call append("$", "hidden\tdon't unload a buffer when no longer shown in a window") | |
491 call <SID>BinOptionG("hid", &hid) | |
492 call append("$", "switchbuf\t\"useopen\" and/or \"split\"; which window to use when jumping") | |
493 call append("$", "\tto a buffer") | |
494 call <SID>OptionG("swb", &swb) | |
495 call append("$", "splitbelow\ta new window is put below the current one") | |
496 call <SID>BinOptionG("sb", &sb) | |
15729 | 497 call append("$", "splitright\ta new window is put right of the current one") |
498 call <SID>BinOptionG("spr", &spr) | |
499 call append("$", "scrollbind\tthis window scrolls together with other bound windows") | |
500 call append("$", "\t(local to window)") | |
501 call <SID>BinOptionL("scb") | |
502 call append("$", "scrollopt\t\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'") | |
503 call <SID>OptionG("sbo", &sbo) | |
504 call append("$", "cursorbind\tthis window's cursor moves together with other bound windows") | |
505 call append("$", "\t(local to window)") | |
506 call <SID>BinOptionL("crb") | |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
507 if has("terminal") |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
508 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
|
509 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
|
510 call <SID>OptionL("tws") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
511 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
|
512 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
|
513 call <SID>OptionL("twk") |
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
514 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
|
515 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
|
516 if has('win32') |
c017195b121b
patch 8.1.0880: MS-Windows: inconsistent selection of winpty/conpty
Bram Moolenaar <Bram@vim.org>
parents:
15729
diff
changeset
|
517 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
|
518 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
|
519 endif |
13742
a34b1323286c
patch 8.0.1743: terminal window options are named inconsistently
Christian Brabandt <cb@256bit.org>
parents:
13346
diff
changeset
|
520 call <SID>OptionL("twsl") |
12182
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
521 if exists("&winptydll") |
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
522 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
|
523 call <SID>OptionG("winptydll", &winptydll) |
7e6185446ea6
patch 8.0.0971: 'winptydll' missing from :options
Christian Brabandt <cb@256bit.org>
parents:
12039
diff
changeset
|
524 endif |
11659
49c12c93abf3
Updated runtime files and translations.
Christian Brabandt <cb@256bit.org>
parents:
11077
diff
changeset
|
525 endif |
7 | 526 |
527 | |
714 | 528 call <SID>Header("multiple tab pages") |
529 call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line") | |
530 call append("$", " \tset stal=" . &stal) | |
531 call append("$", "tabpagemax\tmaximum number of tab pages to open for -p and \"tab all\"") | |
532 call append("$", " \tset tpm=" . &tpm) | |
533 call append("$", "tabline\tcustom tab pages line") | |
534 call <SID>OptionG("tal", &tal) | |
842 | 535 if has("gui") |
536 call append("$", "guitablabel\tcustom tab page label for the GUI") | |
537 call <SID>OptionG("gtl", >l) | |
538 call append("$", "guitabtooltip\tcustom tab page tooltip for the GUI") | |
539 call <SID>OptionG("gtt", >t) | |
540 endif | |
714 | 541 |
542 | |
7 | 543 call <SID>Header("terminal") |
544 call append("$", "term\tname of the used terminal") | |
545 call <SID>OptionG("term", &term) | |
546 call append("$", "ttytype\talias for 'term'") | |
547 call <SID>OptionG("tty", &tty) | |
548 call append("$", "ttybuiltin\tcheck built-in termcaps first") | |
549 call <SID>BinOptionG("tbi", &tbi) | |
550 call append("$", "ttyfast\tterminal connection is fast") | |
551 call <SID>BinOptionG("tf", &tf) | |
552 call append("$", "weirdinvert\tterminal that requires extra redrawing") | |
553 call <SID>BinOptionG("wiv", &wiv) | |
554 call append("$", "esckeys\trecognize keys that start with <Esc> in Insert mode") | |
555 call <SID>BinOptionG("ek", &ek) | |
556 call append("$", "scrolljump\tminimal number of lines to scroll at a time") | |
557 call append("$", " \tset sj=" . &sj) | |
558 call append("$", "ttyscroll\tmaximum number of lines to use scrolling instead of redrawing") | |
559 call append("$", " \tset tsl=" . &tsl) | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
560 if has("gui") || has("win32") |
7 | 561 call append("$", "guicursor\tspecifies what the cursor looks like in different modes") |
562 call <SID>OptionG("gcr", &gcr) | |
563 endif | |
564 if has("title") | |
565 let &title = s:old_title | |
566 call append("$", "title\tshow info in the window title") | |
567 call <SID>BinOptionG("title", &title) | |
568 set notitle | |
569 call append("$", "titlelen\tpercentage of 'columns' used for the window title") | |
570 call append("$", " \tset titlelen=" . &titlelen) | |
571 call append("$", "titlestring\twhen not empty, string to be used for the window title") | |
572 call <SID>OptionG("titlestring", &titlestring) | |
573 call append("$", "titleold\tstring to restore the title to when exiting Vim") | |
574 call <SID>OptionG("titleold", &titleold) | |
575 let &icon = s:old_icon | |
576 call append("$", "icon\tset the text of the icon for this window") | |
577 call <SID>BinOptionG("icon", &icon) | |
578 set noicon | |
579 call append("$", "iconstring\twhen not empty, text for the icon of this window") | |
580 call <SID>OptionG("iconstring", &iconstring) | |
581 endif | |
582 if has("win32") | |
583 call append("$", "restorescreen\trestore the screen contents when exiting Vim") | |
584 call <SID>BinOptionG("rs", &rs) | |
585 endif | |
586 | |
587 | |
588 call <SID>Header("using the mouse") | |
589 call append("$", "mouse\tlist of flags for using the mouse") | |
590 call <SID>OptionG("mouse", &mouse) | |
591 if has("gui") | |
592 call append("$", "mousefocus\tthe window with the mouse pointer becomes the current one") | |
593 call <SID>BinOptionG("mousef", &mousef) | |
594 call append("$", "mousehide\thide the mouse pointer while typing") | |
595 call <SID>BinOptionG("mh", &mh) | |
596 endif | |
597 call append("$", "mousemodel\t\"extend\", \"popup\" or \"popup_setpos\"; what the right") | |
598 call append("$", "\tmouse button is used for") | |
599 call <SID>OptionG("mousem", &mousem) | |
600 call append("$", "mousetime\tmaximum time in msec to recognize a double-click") | |
601 call append("$", " \tset mouset=" . &mouset) | |
602 call append("$", "ttymouse\t\"xterm\", \"xterm2\", \"dec\" or \"netterm\"; type of mouse") | |
603 call <SID>OptionG("ttym", &ttym) | |
604 if has("mouseshape") | |
605 call append("$", "mouseshape\twhat the mouse pointer looks like in different modes") | |
606 call <SID>OptionG("mouses", &mouses) | |
607 endif | |
608 | |
609 | |
610 if has("gui") | |
611 call <SID>Header("GUI") | |
612 call append("$", "guifont\tlist of font names to be used in the GUI") | |
613 call <SID>OptionG("gfn", &gfn) | |
614 if has("xfontset") | |
615 call append("$", "guifontset\tpair of fonts to be used, for multibyte editing") | |
616 call <SID>OptionG("gfs", &gfs) | |
617 endif | |
618 call append("$", "guifontwide\tlist of font names to be used for double-wide characters") | |
619 call <SID>OptionG("gfw", &gfw) | |
620 if has("mac") | |
621 call append("$", "antialias\tuse smooth, antialiased fonts") | |
622 call <SID>BinOptionG("anti", &anti) | |
623 endif | |
624 call append("$", "guioptions\tlist of flags that specify how the GUI works") | |
625 call <SID>OptionG("go", &go) | |
626 if has("gui_gtk") | |
627 call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar") | |
628 call <SID>OptionG("tb", &tb) | |
629 if has("gui_gtk2") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
630 call append("$", "toolbariconsize\tsize of toolbar icons") |
7 | 631 call <SID>OptionG("tbis", &tbis) |
632 endif | |
633 call append("$", "guiheadroom\troom (in pixels) left above/below the window") | |
634 call append("$", " \tset ghr=" . &ghr) | |
635 endif | |
6153 | 636 if has("directx") |
637 call append("$", "renderoptions\toptions for text rendering") | |
638 call <SID>OptionG("rop", &rop) | |
639 endif | |
7 | 640 call append("$", "guipty\tuse a pseudo-tty for I/O to external commands") |
641 call <SID>BinOptionG("guipty", &guipty) | |
642 if has("browse") | |
643 call append("$", "browsedir\t\"last\", \"buffer\" or \"current\": which directory used for the file browser") | |
644 call <SID>OptionG("bsdir", &bsdir) | |
645 endif | |
646 if has("multi_lang") | |
647 call append("$", "langmenu\tlanguage to be used for the menus") | |
648 call <SID>OptionG("langmenu", &lm) | |
649 endif | |
650 call append("$", "menuitems\tmaximum number of items in one menu") | |
651 call append("$", " \tset mis=" . &mis) | |
652 if has("winaltkeys") | |
653 call append("$", "winaltkeys\t\"no\", \"yes\" or \"menu\"; how to use the ALT key") | |
654 call <SID>OptionG("wak", &wak) | |
655 endif | |
656 call append("$", "linespace\tnumber of pixel lines to use between characters") | |
657 call append("$", " \tset lsp=" . &lsp) | |
12909 | 658 if has("balloon_eval") || has("balloon_eval_term") |
7 | 659 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up") |
660 call append("$", " \tset bdlay=" . &bdlay) | |
12909 | 661 if has("balloon_eval") |
662 call append("$", "ballooneval\tuse balloon evaluation in the GUI") | |
663 call <SID>BinOptionG("beval", &beval) | |
664 endif | |
665 if has("balloon_eval_term") | |
666 call append("$", "balloonevalterm\tuse balloon evaluation in the terminal") | |
667 call <SID>BinOptionG("bevalterm", &beval) | |
668 endif | |
184 | 669 if has("eval") |
670 call append("$", "balloonexpr\texpression to show in balloon eval") | |
671 call append("$", " \tset bexpr=" . &bexpr) | |
7 | 672 endif |
673 endif | |
1120 | 674 if exists("+macatsui") |
842 | 675 call append("$", "macatsui\tuse ATSUI text drawing; disable to avoid display problems") |
676 call <SID>OptionG("macatsui", &macatsui) | |
677 endif | |
7 | 678 endif |
679 | |
680 if has("printer") | |
681 call <SID>Header("printing") | |
15 | 682 call append("$", "printoptions\tlist of items that control the format of :hardcopy output") |
683 call <SID>OptionG("popt", &popt) | |
7 | 684 call append("$", "printdevice\tname of the printer to be used for :hardcopy") |
685 call <SID>OptionG("pdev", &pdev) | |
15 | 686 if has("postscript") |
687 call append("$", "printexpr\texpression used to print the PostScript file for :hardcopy") | |
688 call <SID>OptionG("pexpr", &pexpr) | |
689 endif | |
7 | 690 call append("$", "printfont\tname of the font to be used for :hardcopy") |
691 call <SID>OptionG("pfn", &pfn) | |
692 call append("$", "printheader\tformat of the header used for :hardcopy") | |
693 call <SID>OptionG("pheader", &pheader) | |
15 | 694 if has("postscript") |
695 call append("$", "printencoding\tencoding used to print the PostScript file for :hardcopy") | |
696 call <SID>OptionG("penc", &penc) | |
697 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
|
698 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
|
699 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
|
700 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
|
701 call <SID>OptionG("pmbfn", &pmbfn) |
7 | 702 endif |
703 | |
704 call <SID>Header("messages and info") | |
705 call append("$", "terse\tadd 's' flag in 'shortmess' (don't show search message)") | |
706 call <SID>BinOptionG("terse", &terse) | |
707 call append("$", "shortmess\tlist of flags to make messages shorter") | |
708 call <SID>OptionG("shm", &shm) | |
709 call append("$", "showcmd\tshow (partial) command keys in the status line") | |
710 let &sc = s:old_sc | |
711 call <SID>BinOptionG("sc", &sc) | |
712 set nosc | |
713 call append("$", "showmode\tdisplay the current mode in the status line") | |
714 call <SID>BinOptionG("smd", &smd) | |
715 call append("$", "ruler\tshow cursor position below each window") | |
716 let &ru = s:old_ru | |
717 call <SID>BinOptionG("ru", &ru) | |
718 set noru | |
719 if has("statusline") | |
720 call append("$", "rulerformat\talternate format to be used for the ruler") | |
721 call <SID>OptionG("ruf", &ruf) | |
722 endif | |
723 call append("$", "report\tthreshold for reporting number of changed lines") | |
724 call append("$", " \tset report=" . &report) | |
725 call append("$", "verbose\tthe higher the more messages are given") | |
726 call append("$", " \tset vbs=" . &vbs) | |
381 | 727 call append("$", "verbosefile\tfile to write messages in") |
728 call <SID>OptionG("vfile", &vfile) | |
7 | 729 call append("$", "more\tpause listings when the screen is full") |
730 call <SID>BinOptionG("more", &more) | |
731 if has("dialog_con") || has("dialog_gui") | |
732 call append("$", "confirm\tstart a dialog when a command fails") | |
733 call <SID>BinOptionG("cf", &cf) | |
734 endif | |
735 call append("$", "errorbells\tring the bell for error messages") | |
736 call <SID>BinOptionG("eb", &eb) | |
737 call append("$", "visualbell\tuse a visual bell instead of beeping") | |
738 call <SID>BinOptionG("vb", &vb) | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6933
diff
changeset
|
739 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
|
740 call <SID>OptionG("belloff", &belloff) |
7 | 741 if has("multi_lang") |
742 call append("$", "helplang\tlist of preferred languages for finding help") | |
743 call <SID>OptionG("hlg", &hlg) | |
744 endif | |
745 | |
746 | |
747 call <SID>Header("selecting text") | |
748 call append("$", "selection\t\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves") | |
749 call <SID>OptionG("sel", &sel) | |
750 call append("$", "selectmode\t\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode") | |
751 call append("$", "\tinstead of Visual mode") | |
752 call <SID>OptionG("slm", &slm) | |
753 if has("clipboard") | |
754 call append("$", "clipboard\t\"unnamed\" to use the * register like unnamed register") | |
755 call append("$", "\t\"autoselect\" to always put selected text on the clipboard") | |
756 call <SID>OptionG("cb", &cb) | |
757 endif | |
758 call append("$", "keymodel\t\"startsel\" and/or \"stopsel\"; what special keys can do") | |
759 call <SID>OptionG("km", &km) | |
760 | |
761 | |
762 call <SID>Header("editing text") | |
763 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
|
764 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
|
765 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
|
766 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
|
767 call <SID>BinOptionG("udf", &udf) |
12392eb2923a
commit https://github.com/vim/vim/commit/4694a17d1ec08382f996990a7fac1ac60197ec81
Christian Brabandt <cb@256bit.org>
parents:
8673
diff
changeset
|
768 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
|
769 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
|
770 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
|
771 call append("$", " \tset ur=" . &ur) |
7 | 772 call append("$", "modified\tchanges have been made and not written to a file") |
773 call append("$", "\t(local to buffer)") | |
774 call <SID>BinOptionL("mod") | |
775 call append("$", "readonly\tbuffer is not to be written") | |
776 call append("$", "\t(local to buffer)") | |
777 call <SID>BinOptionL("ro") | |
778 call append("$", "modifiable\tchanges to the text are not possible") | |
779 call append("$", "\t(local to buffer)") | |
780 call <SID>BinOptionL("ma") | |
781 call append("$", "textwidth\tline length above which to break a line") | |
782 call append("$", "\t(local to buffer)") | |
783 call <SID>OptionL("tw") | |
784 call append("$", "wrapmargin\tmargin from the right in which to break a line") | |
785 call append("$", "\t(local to buffer)") | |
786 call <SID>OptionL("wm") | |
787 call append("$", "backspace\tspecifies what <BS>, CTRL-W, etc. can do in Insert mode") | |
788 call append("$", " \tset bs=" . &bs) | |
789 call append("$", "comments\tdefinition of what comment lines look like") | |
790 call append("$", "\t(local to buffer)") | |
791 call <SID>OptionL("com") | |
792 call append("$", "formatoptions\tlist of flags that tell how automatic formatting works") | |
793 call append("$", "\t(local to buffer)") | |
794 call <SID>OptionL("fo") | |
41 | 795 call append("$", "formatlistpat\tpattern to recognize a numbered list") |
796 call append("$", "\t(local to buffer)") | |
797 call <SID>OptionL("flp") | |
714 | 798 if has("eval") |
799 call append("$", "formatexpr\texpression used for \"gq\" to format lines") | |
800 call append("$", "\t(local to buffer)") | |
801 call <SID>OptionL("fex") | |
802 endif | |
7 | 803 if has("insert_expand") |
539 | 804 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P") |
7 | 805 call append("$", "\t(local to buffer)") |
806 call <SID>OptionL("cpt") | |
539 | 807 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion") |
808 call <SID>OptionG("cot", &cot) | |
771 | 809 call append("$", "pumheight\tmaximum height of the popup menu") |
810 call <SID>OptionG("ph", &ph) | |
13341
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
811 call append("$", "pumwidth\tminimum width of the popup menu") |
acd7eaa13d2b
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
13154
diff
changeset
|
812 call <SID>OptionG("pw", &pw) |
12 | 813 call append("$", "completefunc\tuser defined function for Insert mode completion") |
814 call append("$", "\t(local to buffer)") | |
815 call <SID>OptionL("cfu") | |
523 | 816 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion") |
502 | 817 call append("$", "\t(local to buffer)") |
818 call <SID>OptionL("ofu") | |
7 | 819 call append("$", "dictionary\tlist of dictionary files for keyword completion") |
820 call append("$", "\t(global or local to buffer)") | |
821 call <SID>OptionG("dict", &dict) | |
822 call append("$", "thesaurus\tlist of thesaurus files for keyword completion") | |
823 call append("$", "\t(global or local to buffer)") | |
824 call <SID>OptionG("tsr", &tsr) | |
825 endif | |
826 call append("$", "infercase\tadjust case of a keyword completion match") | |
827 call append("$", "\t(local to buffer)") | |
828 call <SID>BinOptionL("inf") | |
829 if has("digraphs") | |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
830 call append("$", "digraph\tenable entering digraphs with c1 <BS> c2") |
7 | 831 call <SID>BinOptionG("dg", &dg) |
832 endif | |
833 call append("$", "tildeop\tthe \"~\" command behaves like an operator") | |
834 call <SID>BinOptionG("top", &top) | |
625 | 835 call append("$", "operatorfunc\tfunction called for the\"g@\" operator") |
836 call <SID>OptionG("opfunc", &opfunc) | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
837 call append("$", "showmatch\twhen inserting a bracket, briefly jump to its match") |
7 | 838 call <SID>BinOptionG("sm", &sm) |
839 call append("$", "matchtime\ttenth of a second to show a match for 'showmatch'") | |
840 call append("$", " \tset mat=" . &mat) | |
841 call append("$", "matchpairs\tlist of pairs that match for the \"%\" command") | |
842 call append("$", "\t(local to buffer)") | |
843 call <SID>OptionL("mps") | |
844 call append("$", "joinspaces\tuse two spaces after '.' when joining a line") | |
845 call <SID>BinOptionG("js", &js) | |
846 call append("$", "nrformats\t\"alpha\", \"octal\" and/or \"hex\"; number formats recognized for") | |
847 call append("$", "\tCTRL-A and CTRL-X commands") | |
848 call append("$", "\t(local to buffer)") | |
849 call <SID>OptionL("nf") | |
850 | |
851 | |
852 call <SID>Header("tabs and indenting") | |
853 call append("$", "tabstop\tnumber of spaces a <Tab> in the text stands for") | |
854 call append("$", "\t(local to buffer)") | |
855 call <SID>OptionL("ts") | |
856 call append("$", "shiftwidth\tnumber of spaces used for each step of (auto)indent") | |
857 call append("$", "\t(local to buffer)") | |
858 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
|
859 if has("vartabs") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
860 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
|
861 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
|
862 call <SID>OptionL("vts") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
863 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
|
864 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
|
865 call <SID>OptionL("vsts") |
2ad722003b36
patch 8.1.0105: all tab stops are the same
Christian Brabandt <cb@256bit.org>
parents:
13946
diff
changeset
|
866 endif |
7 | 867 call append("$", "smarttab\ta <Tab> in an indent inserts 'shiftwidth' spaces") |
868 call <SID>BinOptionG("sta", &sta) | |
869 call append("$", "softtabstop\tif non-zero, number of spaces to insert for a <Tab>") | |
870 call append("$", "\t(local to buffer)") | |
871 call <SID>OptionL("sts") | |
872 call append("$", "shiftround\tround to 'shiftwidth' for \"<<\" and \">>\"") | |
873 call <SID>BinOptionG("sr", &sr) | |
874 call append("$", "expandtab\texpand <Tab> to spaces in Insert mode") | |
875 call append("$", "\t(local to buffer)") | |
876 call <SID>BinOptionL("et") | |
877 call append("$", "autoindent\tautomatically set the indent of a new line") | |
878 call append("$", "\t(local to buffer)") | |
879 call <SID>BinOptionL("ai") | |
880 if has("smartindent") | |
881 call append("$", "smartindent\tdo clever autoindenting") | |
882 call append("$", "\t(local to buffer)") | |
883 call <SID>BinOptionL("si") | |
884 endif | |
885 if has("cindent") | |
886 call append("$", "cindent\tenable specific indenting for C code") | |
887 call append("$", "\t(local to buffer)") | |
888 call <SID>BinOptionL("cin") | |
889 call append("$", "cinoptions\toptions for C-indenting") | |
890 call append("$", "\t(local to buffer)") | |
891 call <SID>OptionL("cino") | |
892 call append("$", "cinkeys\tkeys that trigger C-indenting in Insert mode") | |
893 call append("$", "\t(local to buffer)") | |
894 call <SID>OptionL("cink") | |
895 call append("$", "cinwords\tlist of words that cause more C-indent") | |
896 call append("$", "\t(local to buffer)") | |
897 call <SID>OptionL("cinw") | |
898 call append("$", "indentexpr\texpression used to obtain the indent of a line") | |
899 call append("$", "\t(local to buffer)") | |
900 call <SID>OptionL("inde") | |
901 call append("$", "indentkeys\tkeys that trigger indenting with 'indentexpr' in Insert mode") | |
902 call append("$", "\t(local to buffer)") | |
903 call <SID>OptionL("indk") | |
904 endif | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
905 call append("$", "copyindent\tcopy whitespace for indenting from previous line") |
7 | 906 call append("$", "\t(local to buffer)") |
907 call <SID>BinOptionL("ci") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
908 call append("$", "preserveindent\tpreserve kind of whitespace when changing indent") |
7 | 909 call append("$", "\t(local to buffer)") |
910 call <SID>BinOptionL("pi") | |
911 if has("lispindent") | |
912 call append("$", "lisp\tenable lisp mode") | |
913 call append("$", "\t(local to buffer)") | |
914 call <SID>BinOptionL("lisp") | |
915 call append("$", "lispwords\twords that change how lisp indenting works") | |
5772 | 916 call <SID>OptionL("lw") |
7 | 917 endif |
918 | |
919 | |
920 if has("folding") | |
921 call <SID>Header("folding") | |
922 call append("$", "foldenable\tset to display all folds open") | |
923 call append("$", "\t(local to window)") | |
924 call <SID>BinOptionL("fen") | |
925 call append("$", "foldlevel\tfolds with a level higher than this number will be closed") | |
926 call append("$", "\t(local to window)") | |
927 call <SID>OptionL("fdl") | |
928 call append("$", "foldlevelstart\tvalue for 'foldlevel' when starting to edit a file") | |
929 call append("$", " \tset fdls=" . &fdls) | |
930 call append("$", "foldcolumn\twidth of the column used to indicate folds") | |
931 call append("$", "\t(local to window)") | |
932 call <SID>OptionL("fdc") | |
933 call append("$", "foldtext\texpression used to display the text of a closed fold") | |
934 call append("$", "\t(local to window)") | |
935 call <SID>OptionL("fdt") | |
936 call append("$", "foldclose\tset to \"all\" to close a fold when the cursor leaves it") | |
937 call <SID>OptionG("fcl", &fcl) | |
938 call append("$", "foldopen\tspecifies for which commands a fold will be opened") | |
939 call <SID>OptionG("fdo", &fdo) | |
940 call append("$", "foldminlines\tminimum number of screen lines for a fold to be closed") | |
941 call append("$", "\t(local to window)") | |
942 call <SID>OptionL("fml") | |
943 call append("$", "commentstring\ttemplate for comments; used to put the marker in") | |
944 call <SID>OptionL("cms") | |
945 call append("$", "foldmethod\tfolding type: \"manual\", \"indent\", \"expr\", \"marker\" or \"syntax\"") | |
946 call append("$", "\t(local to window)") | |
947 call <SID>OptionL("fdm") | |
948 call append("$", "foldexpr\texpression used when 'foldmethod' is \"expr\"") | |
949 call append("$", "\t(local to window)") | |
950 call <SID>OptionL("fde") | |
951 call append("$", "foldignore\tused to ignore lines when 'foldmethod' is \"indent\"") | |
952 call append("$", "\t(local to window)") | |
953 call <SID>OptionL("fdi") | |
954 call append("$", "foldmarker\tmarkers used when 'foldmethod' is \"marker\"") | |
955 call append("$", "\t(local to window)") | |
956 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
|
957 call append("$", "foldnestmax\tmaximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\"") |
7 | 958 call append("$", "\t(local to window)") |
959 call <SID>OptionL("fdn") | |
960 endif | |
961 | |
962 | |
963 if has("diff") | |
964 call <SID>Header("diff mode") | |
965 call append("$", "diff\tuse diff mode for the current window") | |
966 call append("$", "\t(local to window)") | |
967 call <SID>BinOptionL("diff") | |
968 call append("$", "diffopt\toptions for using diff mode") | |
969 call <SID>OptionG("dip", &dip) | |
970 call append("$", "diffexpr\texpression used to obtain a diff file") | |
971 call <SID>OptionG("dex", &dex) | |
972 call append("$", "patchexpr\texpression used to patch a file") | |
973 call <SID>OptionG("pex", &pex) | |
974 endif | |
975 | |
976 | |
977 call <SID>Header("mapping") | |
978 call append("$", "maxmapdepth\tmaximum depth of mapping") | |
979 call append("$", " \tset mmd=" . &mmd) | |
980 call append("$", "remap\trecognize mappings in mapped keys") | |
981 call <SID>BinOptionG("remap", &remap) | |
982 call append("$", "timeout\tallow timing out halfway into a mapping") | |
983 call <SID>BinOptionG("to", &to) | |
984 call append("$", "ttimeout\tallow timing out halfway into a key code") | |
985 call <SID>BinOptionG("ttimeout", &ttimeout) | |
986 call append("$", "timeoutlen\ttime in msec for 'timeout'") | |
987 call append("$", " \tset tm=" . &tm) | |
988 call append("$", "ttimeoutlen\ttime in msec for 'ttimeout'") | |
989 call append("$", " \tset ttm=" . &ttm) | |
990 | |
991 | |
992 call <SID>Header("reading and writing files") | |
993 call append("$", "modeline\tenable using settings from modelines when reading a file") | |
994 call append("$", "\t(local to buffer)") | |
995 call <SID>BinOptionL("ml") | |
16808 | 996 call append("$", "modelineexpr\tallow setting expression options from a modeline") |
997 call <SID>BinOptionG("mle", &mle) | |
7 | 998 call append("$", "modelines\tnumber of lines to check for modelines") |
999 call append("$", " \tset mls=" . &mls) | |
1000 call append("$", "binary\tbinary file editing") | |
1001 call append("$", "\t(local to buffer)") | |
1002 call <SID>BinOptionL("bin") | |
1003 call append("$", "endofline\tlast line in the file has an end-of-line") | |
1004 call append("$", "\t(local to buffer)") | |
1005 call <SID>BinOptionL("eol") | |
6951
b2673982c625
Updated and new runtime files.
Bram Moolenaar <bram@vim.org>
parents:
6933
diff
changeset
|
1006 call append("$", "fixendofline\tfixes missing end-of-line at end of text file") |
6933 | 1007 call append("$", "\t(local to buffer)") |
1008 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
|
1009 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
|
1010 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
|
1011 call <SID>BinOptionL("bomb") |
7 | 1012 call append("$", "fileformat\tend-of-line format: \"dos\", \"unix\" or \"mac\"") |
1013 call append("$", "\t(local to buffer)") | |
1014 call <SID>OptionL("ff") | |
1015 call append("$", "fileformats\tlist of file formats to look for when editing a file") | |
1016 call <SID>OptionG("ffs", &ffs) | |
1017 call append("$", "textmode\tobsolete, use 'fileformat'") | |
1018 call append("$", "\t(local to buffer)") | |
1019 call <SID>BinOptionL("tx") | |
1020 call append("$", "textauto\tobsolete, use 'fileformats'") | |
1021 call <SID>BinOptionG("ta", &ta) | |
1022 call append("$", "write\twriting files is allowed") | |
1023 call <SID>BinOptionG("write", &write) | |
1024 call append("$", "writebackup\twrite a backup file before overwriting a file") | |
1025 call <SID>BinOptionG("wb", &wb) | |
1026 call append("$", "backup\tkeep a backup after overwriting a file") | |
1027 call <SID>BinOptionG("bk", &bk) | |
1028 call append("$", "backupskip\tpatterns that specify for which files a backup is not made") | |
1029 call append("$", " \tset bsk=" . &bsk) | |
1030 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
|
1031 call append("$", "\t(global or local to buffer)") |
7 | 1032 call append("$", " \tset bkc=" . &bkc) |
1033 call append("$", "backupdir\tlist of directories to put backup files in") | |
1034 call <SID>OptionG("bdir", &bdir) | |
1035 call append("$", "backupext\tfile name extension for the backup file") | |
1036 call <SID>OptionG("bex", &bex) | |
1037 call append("$", "autowrite\tautomatically write a file when leaving a modified buffer") | |
1038 call <SID>BinOptionG("aw", &aw) | |
1039 call append("$", "autowriteall\tas 'autowrite', but works with more commands") | |
1040 call <SID>BinOptionG("awa", &awa) | |
1041 call append("$", "writeany\talways write without asking for confirmation") | |
1042 call <SID>BinOptionG("wa", &wa) | |
1043 call append("$", "autoread\tautomatically read a file when it was modified outside of Vim") | |
1044 call append("$", "\t(global or local to buffer)") | |
1045 call <SID>BinOptionG("ar", &ar) | |
1046 call append("$", "patchmode\tkeep oldest version of a file; specifies file name extension") | |
1047 call <SID>OptionG("pm", &pm) | |
36 | 1048 call append("$", "fsync\tforcibly sync the file to disk after writing it") |
1049 call <SID>BinOptionG("fs", &fs) | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1050 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
|
1051 call append("$", "\t(local to buffer)") |
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1052 call <SID>BinOptionL("sn") |
2398 | 1053 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
|
1054 call append("$", "\t(local to buffer)") |
e741fe7a0547
Updated a few runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1055 call <SID>OptionL("cm") |
7 | 1056 |
1057 | |
1058 call <SID>Header("the swap file") | |
1059 call append("$", "directory\tlist of directories for the swap file") | |
1060 call <SID>OptionG("dir", &dir) | |
1061 call append("$", "swapfile\tuse a swap file for this buffer") | |
1062 call append("$", "\t(local to buffer)") | |
1063 call <SID>BinOptionL("swf") | |
1064 call append("$", "swapsync\t\"sync\", \"fsync\" or empty; how to flush a swap file to disk") | |
1065 call <SID>OptionG("sws", &sws) | |
1066 call append("$", "updatecount\tnumber of characters typed to cause a swap file update") | |
1067 call append("$", " \tset uc=" . &uc) | |
1068 call append("$", "updatetime\ttime in msec after which the swap file will be updated") | |
1069 call append("$", " \tset ut=" . &ut) | |
1070 call append("$", "maxmem\tmaximum amount of memory in Kbyte used for one buffer") | |
1071 call append("$", " \tset mm=" . &mm) | |
1072 call append("$", "maxmemtot\tmaximum amount of memory in Kbyte used for all buffers") | |
1073 call append("$", " \tset mmt=" . &mmt) | |
1074 | |
1075 | |
1076 call <SID>Header("command line editing") | |
1077 call append("$", "history\thow many command lines are remembered ") | |
1078 call append("$", " \tset hi=" . &hi) | |
1079 call append("$", "wildchar\tkey that triggers command-line expansion") | |
1080 call append("$", " \tset wc=" . &wc) | |
1081 call append("$", "wildcharm\tlike 'wildchar' but can also be used in a mapping") | |
1082 call append("$", " \tset wcm=" . &wcm) | |
1083 call append("$", "wildmode\tspecifies how command line completion works") | |
1084 call <SID>OptionG("wim", &wim) | |
40 | 1085 if has("wildoptions") |
1086 call append("$", "wildoptions\tempty or \"tagfile\" to list file name of matching tags") | |
1087 call <SID>OptionG("wop", &wop) | |
1088 endif | |
7 | 1089 call append("$", "suffixes\tlist of file name extensions that have a lower priority") |
1090 call <SID>OptionG("su", &su) | |
1091 if has("file_in_path") | |
1092 call append("$", "suffixesadd\tlist of file name extensions added when searching for a file") | |
1093 call append("$", "\t(local to buffer)") | |
1094 call <SID>OptionL("sua") | |
1095 endif | |
1096 if has("wildignore") | |
1097 call append("$", "wildignore\tlist of patterns to ignore files for file name completion") | |
1098 call <SID>OptionG("wig", &wig) | |
1099 endif | |
4254 | 1100 call append("$", "fileignorecase\tignore case when using file names") |
1101 call <SID>BinOptionG("fic", &fic) | |
2662 | 1102 call append("$", "wildignorecase\tignore case when completing file names") |
1103 call <SID>BinOptionG("wic", &wic) | |
7 | 1104 if has("wildmenu") |
1105 call append("$", "wildmenu\tcommand-line completion shows a list of matches") | |
1106 call <SID>BinOptionG("wmnu", &wmnu) | |
1107 endif | |
15729 | 1108 call append("$", "cedit\tkey used to open the command-line window") |
1109 call <SID>OptionG("cedit", &cedit) | |
1110 call append("$", "cmdwinheight\theight of the command-line window") | |
1111 call <SID>OptionG("cwh", &cwh) | |
7 | 1112 |
1113 | |
1114 call <SID>Header("executing external commands") | |
1115 call append("$", "shell\tname of the shell program used for external commands") | |
1116 call <SID>OptionG("sh", &sh) | |
1117 if has("amiga") | |
1118 call append("$", "shelltype\twhen to use the shell or directly execute a command") | |
1119 call append("$", " \tset st=" . &st) | |
1120 endif | |
1121 call append("$", "shellquote\tcharacter(s) to enclose a shell command in") | |
1122 call <SID>OptionG("shq", &shq) | |
1123 call append("$", "shellxquote\tlike 'shellquote' but include the redirection") | |
1124 call <SID>OptionG("sxq", &sxq) | |
3371 | 1125 call append("$", "shellxescape\tcharacters to escape when 'shellxquote' is (") |
1126 call <SID>OptionG("sxe", &sxe) | |
7 | 1127 call append("$", "shellcmdflag\targument for 'shell' to execute a command") |
1128 call <SID>OptionG("shcf", &shcf) | |
1129 call append("$", "shellredir\tused to redirect command output to a file") | |
1130 call <SID>OptionG("srr", &srr) | |
393 | 1131 call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe") |
1132 call <SID>BinOptionG("stmp", &stmp) | |
7 | 1133 call append("$", "equalprg\tprogram used for \"=\" command") |
1134 call append("$", "\t(global or local to buffer)") | |
1135 call <SID>OptionG("ep", &ep) | |
1136 call append("$", "formatprg\tprogram used to format lines with \"gq\" command") | |
1137 call <SID>OptionG("fp", &fp) | |
1138 call append("$", "keywordprg\tprogram used for the \"K\" command") | |
1139 call <SID>OptionG("kp", &kp) | |
1140 call append("$", "warn\twarn when using a shell command and a buffer has changes") | |
1141 call <SID>BinOptionG("warn", &warn) | |
1142 | |
1143 | |
1144 if has("quickfix") | |
1145 call <SID>Header("running make and jumping to errors") | |
1146 call append("$", "errorfile\tname of the file that contains error messages") | |
1147 call <SID>OptionG("ef", &ef) | |
1148 call append("$", "errorformat\tlist of formats for error messages") | |
1149 call append("$", "\t(global or local to buffer)") | |
1150 call <SID>OptionG("efm", &efm) | |
1151 call append("$", "makeprg\tprogram used for the \":make\" command") | |
1152 call append("$", "\t(global or local to buffer)") | |
1153 call <SID>OptionG("mp", &mp) | |
1154 call append("$", "shellpipe\tstring used to put the output of \":make\" in the error file") | |
1155 call <SID>OptionG("sp", &sp) | |
1156 call append("$", "makeef\tname of the errorfile for the 'makeprg' command") | |
1157 call <SID>OptionG("mef", &mef) | |
1158 call append("$", "grepprg\tprogram used for the \":grep\" command") | |
1159 call append("$", "\t(global or local to buffer)") | |
1160 call <SID>OptionG("gp", &gp) | |
1161 call append("$", "grepformat\tlist of formats for output of 'grepprg'") | |
1162 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
|
1163 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
|
1164 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
|
1165 call <SID>OptionG("menc", &menc) |
7 | 1166 endif |
1167 | |
1168 | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1169 if has("win32") || has("osfiletype") |
7 | 1170 call <SID>Header("system specific") |
1171 if has("osfiletype") | |
1172 call append("$", "osfiletype\tOS-specific information about the type of file") | |
1173 call append("$", "\t(local to buffer)") | |
1174 call <SID>OptionL("oft") | |
1175 endif | |
9536
b2aada04d84e
commit https://github.com/vim/vim/commit/a06ecab7a5159e744448ace731036f0dc5f87dd4
Christian Brabandt <cb@256bit.org>
parents:
9048
diff
changeset
|
1176 if has("win32") |
7 | 1177 call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells") |
1178 call <SID>BinOptionG("ssl", &ssl) | |
1179 endif | |
1180 endif | |
1181 | |
1182 | |
1183 call <SID>Header("language specific") | |
1184 call append("$", "isfname\tspecifies the characters in a file name") | |
1185 call <SID>OptionG("isf", &isf) | |
1186 call append("$", "isident\tspecifies the characters in an identifier") | |
1187 call <SID>OptionG("isi", &isi) | |
1188 call append("$", "iskeyword\tspecifies the characters in a keyword") | |
1189 call append("$", "\t(local to buffer)") | |
1190 call <SID>OptionL("isk") | |
1191 call append("$", "isprint\tspecifies printable characters") | |
1192 call <SID>OptionG("isp", &isp) | |
12 | 1193 if has("textobjects") |
1194 call append("$", "quoteescape\tspecifies escape characters in a string") | |
1195 call append("$", "\t(local to buffer)") | |
1196 call <SID>OptionL("qe") | |
1197 endif | |
7 | 1198 if has("rightleft") |
1199 call append("$", "rightleft\tdisplay the buffer right-to-left") | |
1200 call append("$", "\t(local to window)") | |
1201 call <SID>BinOptionL("rl") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1202 call append("$", "rightleftcmd\twhen to edit the command-line right-to-left") |
7 | 1203 call append("$", "\t(local to window)") |
1204 call <SID>OptionL("rlc") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1205 call append("$", "revins\tinsert characters backwards") |
7 | 1206 call <SID>BinOptionG("ri", &ri) |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1207 call append("$", "allowrevins\tallow CTRL-_ in Insert and Command-line mode to toggle 'revins'") |
7 | 1208 call <SID>BinOptionG("ari", &ari) |
1209 call append("$", "aleph\tthe ASCII code for the first letter of the Hebrew alphabet") | |
1210 call append("$", " \tset al=" . &al) | |
1211 call append("$", "hkmap\tuse Hebrew keyboard mapping") | |
1212 call <SID>BinOptionG("hk", &hk) | |
1213 call append("$", "hkmapp\tuse phonetic Hebrew keyboard mapping") | |
1214 call <SID>BinOptionG("hkp", &hkp) | |
1215 endif | |
1216 if has("farsi") | |
1217 call append("$", "altkeymap\tuse Farsi as the second language when 'revins' is set") | |
1218 call <SID>BinOptionG("akm", &akm) | |
1219 call append("$", "fkmap\tuse Farsi keyboard mapping") | |
1220 call <SID>BinOptionG("fk", &fk) | |
1221 endif | |
1222 if has("arabic") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1223 call append("$", "arabic\tprepare for editing Arabic text") |
7 | 1224 call append("$", "\t(local to window)") |
1225 call <SID>BinOptionL("arab") | |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1226 call append("$", "arabicshape\tperform shaping of Arabic characters") |
7 | 1227 call <SID>BinOptionG("arshape", &arshape) |
2395
ab69430e646c
Further improvements for :options. (Dominique Pelle)
Bram Moolenaar <bram@vim.org>
parents:
2394
diff
changeset
|
1228 call append("$", "termbidi\tterminal will perform bidi handling") |
7 | 1229 call <SID>BinOptionG("tbidi", &tbidi) |
1230 endif | |
1231 if has("keymap") | |
7511
9985800f116d
commit https://github.com/vim/vim/commit/2b7db933b0418f3964da5399047ce8998007874c
Christian Brabandt <cb@256bit.org>
parents:
7266
diff
changeset
|
1232 call append("$", "keymap\tname of a keyboard mapping") |
7 | 1233 call <SID>OptionL("kmp") |
1234 endif | |
1235 if has("langmap") | |
6385 | 1236 call append("$", "langmap\tlist of characters that are translated in Normal mode") |
7 | 1237 call <SID>OptionG("lmap", &lmap) |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
1238 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
|
1239 call <SID>BinOptionG("lrm", &lrm) |
7 | 1240 endif |
1241 if has("xim") | |
1242 call append("$", "imdisable\twhen set never use IM; overrules following IM options") | |
1243 call <SID>BinOptionG("imd", &imd) | |
1244 endif | |
1245 call append("$", "iminsert\tin Insert mode: 1: use :lmap; 2: use IM; 0: neither") | |
1246 call append("$", "\t(local to window)") | |
1247 call <SID>OptionL("imi") | |
12499 | 1248 call append("$", "imstyle\tinput method style, 0: on-the-spot, 1: over-the-spot") |
1249 call <SID>OptionG("imst", &imst) | |
7 | 1250 call append("$", "imsearch\tentering a search pattern: 1: use :lmap; 2: use IM; 0: neither") |
1251 call append("$", "\t(local to window)") | |
1252 call <SID>OptionL("ims") | |
1253 if has("xim") | |
1254 call append("$", "imcmdline\twhen set always use IM when starting to edit a command line") | |
1255 call <SID>BinOptionG("imc", &imc) | |
5055 | 1256 call append("$", "imstatusfunc\tfunction to obtain IME status") |
1257 call <SID>OptionG("imsf", &imsf) | |
1258 call append("$", "imactivatefunc\tfunction to enable/disable IME") | |
1259 call <SID>OptionG("imaf", &imaf) | |
7 | 1260 endif |
1261 | |
1262 | |
15870
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 <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
|
1264 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
|
1265 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
|
1266 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
|
1267 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
|
1268 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
|
1269 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
|
1270 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
|
1271 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
|
1272 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
|
1273 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
|
1274 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
|
1275 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
|
1276 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
|
1277 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
|
1278 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
|
1279 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
|
1280 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
|
1281 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
|
1282 call <SID>OptionG("imak", &imak) |
7 | 1283 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
|
1284 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
|
1285 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
|
1286 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
|
1287 call <SID>BinOptionG("emo", &emo) |
7 | 1288 |
1289 | |
1290 call <SID>Header("various") | |
15729 | 1291 call append("$", "virtualedit\twhen to use virtual editing: \"block\", \"insert\" and/or \"all\"") |
1292 call <SID>OptionG("ve", &ve) | |
1293 call append("$", "eventignore\tlist of autocommand events which are to be ignored") | |
1294 call <SID>OptionG("ei", &ei) | |
7 | 1295 call append("$", "loadplugins\tload plugin scripts when starting up") |
1296 call <SID>BinOptionG("lpl", &lpl) | |
1297 call append("$", "exrc\tenable reading .vimrc/.exrc/.gvimrc in the current directory") | |
1298 call <SID>BinOptionG("ex", &ex) | |
1299 call append("$", "secure\tsafer working with script files in the current directory") | |
1300 call <SID>BinOptionG("secure", &secure) | |
1301 call append("$", "gdefault\tuse the 'g' flag for \":substitute\"") | |
1302 call <SID>BinOptionG("gd", &gd) | |
1303 call append("$", "edcompatible\t'g' and 'c' flags of \":substitute\" toggle") | |
1304 call <SID>BinOptionG("ed", &ed) | |
1120 | 1305 if exists("+opendevice") |
1306 call append("$", "opendevice\tallow reading/writing devices") | |
1307 call <SID>BinOptionG("odev", &odev) | |
1308 endif | |
1309 if exists("+maxfuncdepth") | |
7 | 1310 call append("$", "maxfuncdepth\tmaximum depth of function calls") |
1311 call append("$", " \tset mfd=" . &mfd) | |
1120 | 1312 endif |
7 | 1313 if has("mksession") |
1314 call append("$", "sessionoptions\tlist of words that specifies what to put in a session file") | |
1315 call <SID>OptionG("ssop", &ssop) | |
1316 call append("$", "viewoptions\tlist of words that specifies what to save for :mkview") | |
1317 call <SID>OptionG("vop", &vop) | |
1318 call append("$", "viewdir\tdirectory where to store files with :mkview") | |
1319 call <SID>OptionG("vdir", &vdir) | |
1320 endif | |
1321 if has("viminfo") | |
1322 call append("$", "viminfo\tlist that specifies what to write in the viminfo file") | |
1323 call <SID>OptionG("vi", &vi) | |
11914 | 1324 call append("$", "viminfofile\tfile name used for the viminfo file") |
1325 call <SID>OptionG("vif", &vif) | |
7 | 1326 endif |
1327 if has("quickfix") | |
1328 call append("$", "bufhidden\twhat happens with a buffer when it's no longer in a window") | |
1329 call append("$", "\t(local to buffer)") | |
1330 call <SID>OptionL("bh") | |
1331 call append("$", "buftype\t\"\", \"nofile\", \"nowrite\" or \"quickfix\": type of buffer") | |
1332 call append("$", "\t(local to buffer)") | |
1333 call <SID>OptionL("bt") | |
1334 endif | |
1335 call append("$", "buflisted\twhether the buffer shows up in the buffer list") | |
1336 call append("$", "\t(local to buffer)") | |
1337 call <SID>BinOptionL("bl") | |
1338 call append("$", "debug\tset to \"msg\" to see all error messages") | |
1339 call append("$", " \tset debug=" . &debug) | |
9852
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1340 if has("signs") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1341 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
|
1342 call append("$", "\t(local to window)") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1343 call <SID>OptionL("scl") |
4eea48b76d03
commit https://github.com/vim/vim/commit/95ec9d6a6ab3117d60ff638670a803d43974ba51
Christian Brabandt <cb@256bit.org>
parents:
9536
diff
changeset
|
1344 endif |
14 | 1345 if has("mzscheme") |
1346 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads") | |
1347 call append("$", " \tset mzq=" . &mzq) | |
1348 endif | |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1349 if exists("&luadll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1350 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
|
1351 call <SID>OptionG("luadll", &luadll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1352 endif |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1353 if exists("&perldll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1354 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
|
1355 call <SID>OptionG("perldll", &perldll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1356 endif |
10722
7598ce51bf2a
patch 8.0.0251: not easy to select Python 2 or 3
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
1357 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
|
1358 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
|
1359 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
|
1360 endif |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1361 if exists("&pythondll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1362 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
|
1363 call <SID>OptionG("pythondll", &pythondll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1364 endif |
13154
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1365 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
|
1366 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
|
1367 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
|
1368 endif |
7220
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1369 if exists("&pythonthreedll") |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1370 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
|
1371 call <SID>OptionG("pythonthreedll", &pythonthreedll) |
1931b890e7d7
commit https://github.com/vim/vim/commit/d4ece23e2e602d820ab7367c383dc0d72dd87029
Christian Brabandt <cb@256bit.org>
parents:
6956
diff
changeset
|
1372 endif |
13154
53cc7ea77c54
patch 8.0.1451: difficult to set the python home directories properly
Christian Brabandt <cb@256bit.org>
parents:
12909
diff
changeset
|
1373 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
|
1374 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
|
1375 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
|
1376 endif |
7222
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1377 if exists("&rubydll") |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1378 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
|
1379 call <SID>OptionG("rubydll", &rubydll) |
4e86d5700260
commit https://github.com/vim/vim/commit/a93f975e8b39d7cfc8145dbe181cc4e5e4ec0bdf
Christian Brabandt <cb@256bit.org>
parents:
7220
diff
changeset
|
1380 endif |
7538
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1381 if exists("&tcldll") |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1382 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
|
1383 call <SID>OptionG("tcldll", &tcldll) |
c9fc24b76293
commit https://github.com/vim/vim/commit/8a5115cf18751022387af2085f374d38c60dde83
Christian Brabandt <cb@256bit.org>
parents:
7511
diff
changeset
|
1384 endif |
12756
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1385 if exists("&mzschemedll") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1386 call append("$", "mzschemedll\tname of the Tcl dynamic library") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1387 call <SID>OptionG("mzschemedll", &mzschemedll) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1388 call append("$", "mzschemegcdll\tname of the Tcl GC dynamic library") |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1389 call <SID>OptionG("mzschemegcdll", &mzschemegcdll) |
3b26420fc639
Long overdue runtime update.
Christian Brabandt <cb@256bit.org>
parents:
12499
diff
changeset
|
1390 endif |
7 | 1391 |
1392 set cpo&vim | |
1393 | |
1394 " go to first line | |
1395 1 | |
1396 | |
1397 " reset 'modified', so that ":q" can be used to close the window | |
1398 setlocal nomodified | |
1399 | |
1400 if has("syntax") | |
1401 " Use Vim highlighting, with some additional stuff | |
1402 setlocal ft=vim | |
1403 syn match optwinHeader "^ \=[0-9].*" | |
1404 syn match optwinName "^[a-z]*\t" nextgroup=optwinComment | |
1405 syn match optwinComment ".*" contained | |
1406 syn match optwinComment "^\t.*" | |
1407 if !exists("did_optwin_syntax_inits") | |
1408 let did_optwin_syntax_inits = 1 | |
1409 hi link optwinHeader Title | |
1410 hi link optwinName Identifier | |
1411 hi link optwinComment Comment | |
1412 endif | |
1413 endif | |
1414 | |
1415 " Install autocommands to enable mappings in option-window | |
1416 noremap <silent> <buffer> <CR> <C-\><C-N>:call <SID>CR()<CR> | |
1417 inoremap <silent> <buffer> <CR> <Esc>:call <SID>CR()<CR> | |
1418 noremap <silent> <buffer> <Space> :call <SID>Space()<CR> | |
1419 | |
1420 " Make the buffer be deleted when the window is closed. | |
1421 setlocal buftype=nofile bufhidden=delete noswapfile | |
1422 | |
1423 augroup optwin | |
1424 au! BufUnload,BufHidden option-window nested | |
1425 \ call <SID>unload() | delfun <SID>unload | |
1426 augroup END | |
1427 | |
1428 fun! <SID>unload() | |
1429 delfun <SID>CR | |
1430 delfun <SID>Space | |
1431 delfun <SID>Find | |
1432 delfun <SID>Update | |
1433 delfun <SID>OptionL | |
1434 delfun <SID>OptionG | |
1435 delfun <SID>BinOptionL | |
1436 delfun <SID>BinOptionG | |
1437 delfun <SID>Header | |
1438 au! optwin | |
1439 endfun | |
1440 | |
1441 " Restore the previous value of 'title' and 'icon'. | |
1442 let &title = s:old_title | |
1443 let &icon = s:old_icon | |
1444 let &ru = s:old_ru | |
1445 let &sc = s:old_sc | |
1446 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
|
1447 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
|
1448 unlet s:old_title s:old_icon s:old_ru s:old_sc s:cpo_save s:idx s:lnum s:old_ul |
2908 | 1449 |
1450 " vim: ts=8 sw=2 sts=2 |