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