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