blob: d929836e7426699a4986ac6f6db14c49455bb0ab [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" These commands create the option window.
2"
3" Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaarc6ddce32019-02-08 12:47:03 +01004" Last Change: 2019 Feb 08
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6" If there already is an option window, jump to that one.
Bram Moolenaarab6c8582017-08-11 17:15:09 +02007let buf = bufnr('option-window')
8if buf >= 0
9 let winids = win_findbuf(buf)
10 if len(winids) > 0
11 if win_gotoid(winids[0]) == 1
Bram Moolenaar071d4272004-06-13 20:20:40 +000012 finish
13 endif
Bram Moolenaarab6c8582017-08-11 17:15:09 +020014 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000015endif
16
17" Make sure the '<' flag is not included in 'cpoptions', otherwise <CR> would
18" not be recognized. See ":help 'cpoptions'".
19let s:cpo_save = &cpo
20set cpo&vim
21
22" function to be called when <CR> is hit in the option-window
23fun! <SID>CR()
24
25 " If on a continued comment line, go back to the first comment line
Bram Moolenaar251e1912011-06-19 05:09:16 +020026 let lnum = search("^[^\t]", 'bWcn')
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 let line = getline(lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
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
50endfun
51
52" function to be called when <Space> is hit in the option-window
53fun! <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
70endfun
71
72" find the window in which the option applies
73" returns 0 for global option, 1 for local option, -1 for error
74fun! <SID>Find(lnum)
75 if getline(a:lnum - 1) =~ "(local to"
76 let local = 1
77 let thiswin = winnr()
Bram Moolenaar251e1912011-06-19 05:09:16 +020078 wincmd p
Bram Moolenaar071d4272004-06-13 20:20:40 +000079 if exists("b:current_syntax") && b:current_syntax == "help"
Bram Moolenaar251e1912011-06-19 05:09:16 +020080 wincmd j
Bram Moolenaar071d4272004-06-13 20:20:40 +000081 if winnr() == thiswin
Bram Moolenaar251e1912011-06-19 05:09:16 +020082 wincmd j
Bram Moolenaar071d4272004-06-13 20:20:40 +000083 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
94endfun
95
96" Update a "set" line in the option window
97fun! <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
Bram Moolenaar251e1912011-06-19 05:09:16 +0200107 let val = escape(eval('&' . name), " \t\\\"|")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108 endif
109 if a:local
Bram Moolenaar251e1912011-06-19 05:09:16 +0200110 exe a:thiswin . "wincmd w"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111 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
122endfun
123
124" Reset 'title' and 'icon' to make it work faster.
Bram Moolenaar9c474b22018-02-27 17:04:25 +0100125" Reset 'undolevels' to avoid undo'ing until the buffer is empty.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126let s:old_title = &title
127let s:old_icon = &icon
128let s:old_sc = &sc
129let s:old_ru = &ru
Bram Moolenaar9c474b22018-02-27 17:04:25 +0100130let s:old_ul = &ul
131set notitle noicon nosc noru ul=-1
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
133" If the current window is a help window, try finding a non-help window.
134" Relies on syntax highlighting to be switched on.
135let s:thiswin = winnr()
136while exists("b:current_syntax") && b:current_syntax == "help"
Bram Moolenaar251e1912011-06-19 05:09:16 +0200137 wincmd w
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138 if s:thiswin == winnr()
139 break
140 endif
141endwhile
142
Bram Moolenaarab6c8582017-08-11 17:15:09 +0200143" Open the window. $OPTWIN_CMD is set to "tab" for ":tab options".
144exe $OPTWIN_CMD . ' new option-window'
Bram Moolenaar251e1912011-06-19 05:09:16 +0200145setlocal ts=15 tw=0 noro buftype=nofile
Bram Moolenaar071d4272004-06-13 20:20:40 +0000146
147" Insert help and a "set" command for each option.
148call append(0, '" Each "set" line shows the current value of an option (on the left).')
149call append(1, '" Hit <CR> on a "set" line to execute it.')
150call append(2, '" A boolean option will be toggled.')
Bram Moolenaar2f3b5102014-11-19 18:54:17 +0100151call append(3, '" For other options you can edit the value before hitting <CR>.')
Bram Moolenaar071d4272004-06-13 20:20:40 +0000152call append(4, '" Hit <CR> on a help line to open a help window on this option.')
153call append(5, '" Hit <CR> on an index line to jump there.')
154call append(6, '" Hit <Space> on a "set" line to refresh it.')
155
156" These functions are called often below. Keep them fast!
157
158" Init a local binary option
159fun! <SID>BinOptionL(name)
Bram Moolenaar251e1912011-06-19 05:09:16 +0200160 let val = getwinvar(winnr('#'), '&' . a:name)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161 call append("$", substitute(substitute(" \tset " . val . a:name . "\t" .
162 \!val . a:name, "0", "no", ""), "1", "", ""))
163endfun
164
165" Init a global binary option
166fun! <SID>BinOptionG(name, val)
167 call append("$", substitute(substitute(" \tset " . a:val . a:name . "\t" .
168 \!a:val . a:name, "0", "no", ""), "1", "", ""))
169endfun
170
171" Init a local string option
172fun! <SID>OptionL(name)
Bram Moolenaar251e1912011-06-19 05:09:16 +0200173 let val = escape(getwinvar(winnr('#'), '&' . a:name), " \t\\\"|")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174 call append("$", " \tset " . a:name . "=" . val)
175endfun
176
177" Init a global string option
178fun! <SID>OptionG(name, val)
Bram Moolenaar251e1912011-06-19 05:09:16 +0200179 call append("$", " \tset " . a:name . "=" . escape(a:val, " \t\\\"|"))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180endfun
181
182let s:idx = 1
183let s:lnum = line("$")
184call append("$", "")
185
186fun! <SID>Header(text)
187 let line = s:idx . " " . a:text
188 if s:idx < 10
189 let line = " " . line
190 endif
191 call append("$", "")
192 call append("$", line)
193 call append("$", "")
194 call append(s:lnum, line)
195 let s:idx = s:idx + 1
196 let s:lnum = s:lnum + 1
197endfun
198
199" Get the value of 'pastetoggle'. It could be a special key.
200fun! <SID>PTvalue()
201 redir @a
202 silent set pt
203 redir END
204 return substitute(@a, '[^=]*=\(.*\)', '\1', "")
205endfun
206
207" Restore the previous value of 'cpoptions' here, it's used below.
208let &cpo = s:cpo_save
209
210" List of all options, organized by function.
211" The text should be sufficient to know what the option is used for.
212
213call <SID>Header("important")
214call append("$", "compatible\tbehave very Vi compatible (not advisable)")
215call <SID>BinOptionG("cp", &cp)
216call append("$", "cpoptions\tlist of flags to specify Vi compatibility")
217call <SID>OptionG("cpo", &cpo)
218call append("$", "insertmode\tuse Insert mode as the default mode")
219call <SID>BinOptionG("im", &im)
220call append("$", "paste\tpaste mode, insert typed text literally")
221call <SID>BinOptionG("paste", &paste)
222call append("$", "pastetoggle\tkey sequence to toggle paste mode")
223if &pt =~ "\x80"
224 call append("$", " \tset pt=" . <SID>PTvalue())
225else
226 call <SID>OptionG("pt", &pt)
227endif
228call append("$", "runtimepath\tlist of directories used for runtime files and plugins")
229call <SID>OptionG("rtp", &rtp)
Bram Moolenaarf6fee0e2016-02-21 23:02:49 +0100230call append("$", "packpath\tlist of directories used for plugin packages")
231call <SID>OptionG("pp", &pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232call append("$", "helpfile\tname of the main help file")
233call <SID>OptionG("hf", &hf)
234
235
236call <SID>Header("moving around, searching and patterns")
237call append("$", "whichwrap\tlist of flags specifying which commands wrap to another line")
238call append("$", "\t(local to window)")
239call <SID>OptionL("ww")
240call append("$", "startofline\tmany jump commands move the cursor to the first non-blank")
241call append("$", "\tcharacter of a line")
242call <SID>BinOptionG("sol", &sol)
243call append("$", "paragraphs\tnroff macro names that separate paragraphs")
244call <SID>OptionG("para", &para)
245call append("$", "sections\tnroff macro names that separate sections")
246call <SID>OptionG("sect", &sect)
247call append("$", "path\tlist of directory names used for file searching")
248call append("$", "\t(global or local to buffer)")
249call <SID>OptionG("pa", &pa)
250call append("$", "cdpath\tlist of directory names used for :cd")
251call <SID>OptionG("cd", &cd)
Bram Moolenaarfa9a3702010-07-24 15:48:31 +0200252if exists("+autochdir")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 call append("$", "autochdir\tchange to directory of file in buffer")
254 call <SID>BinOptionG("acd", &acd)
255endif
256call append("$", "wrapscan\tsearch commands wrap around the end of the buffer")
257call <SID>BinOptionG("ws", &ws)
258call append("$", "incsearch\tshow match for partly typed search command")
259call <SID>BinOptionG("is", &is)
260call append("$", "magic\tchange the way backslashes are used in search patterns")
261call <SID>BinOptionG("magic", &magic)
Bram Moolenaare6ae6222013-05-21 21:01:10 +0200262call append("$", "regexpengine\tselect the default regexp engine used")
263call <SID>OptionG("re", &re)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264call append("$", "ignorecase\tignore case when using a search pattern")
265call <SID>BinOptionG("ic", &ic)
266call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters")
267call <SID>BinOptionG("scs", &scs)
Bram Moolenaar1deee622010-07-24 20:35:12 +0200268call append("$", "casemap\twhat method to use for changing case of letters")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269call <SID>OptionG("cmp", &cmp)
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000270call append("$", "maxmempattern\tmaximum amount of memory in Kbyte used for pattern matching")
271call append("$", " \tset mmp=" . &mmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272call append("$", "define\tpattern for a macro definition line")
273call append("$", "\t(global or local to buffer)")
274call <SID>OptionG("def", &def)
275if has("find_in_path")
276 call append("$", "include\tpattern for an include-file line")
277 call append("$", "\t(local to buffer)")
278 call <SID>OptionL("inc")
279 call append("$", "includeexpr\texpression used to transform an include line to a file name")
280 call append("$", "\t(local to buffer)")
281 call <SID>OptionL("inex")
282endif
283
284
285call <SID>Header("tags")
286call append("$", "tagbsearch\tuse binary searching in tags files")
287call <SID>BinOptionG("tbs", &tbs)
288call append("$", "taglength\tnumber of significant characters in a tag name or zero")
289call append("$", " \tset tl=" . &tl)
290call append("$", "tags\tlist of file names to search for tags")
291call append("$", "\t(global or local to buffer)")
292call <SID>OptionG("tag", &tag)
Bram Moolenaar0f6562e2015-11-24 18:48:14 +0100293call append("$", "tagcase\thow to handle case when searching in tags files:")
294call append("$", "\t\"followic\" to follow 'ignorecase', \"ignore\" or \"match\"")
295call append("$", "\t(global or local to buffer)")
296call <SID>OptionG("tc", &tc)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297call append("$", "tagrelative\tfile names in a tags file are relative to the tags file")
298call <SID>BinOptionG("tr", &tr)
299call append("$", "tagstack\ta :tag command will use the tagstack")
300call <SID>BinOptionG("tgst", &tgst)
301call append("$", "showfulltag\twhen completing tags in Insert mode show more info")
302call <SID>BinOptionG("sft", &sft)
303if has("cscope")
304 call append("$", "cscopeprg\tcommand for executing cscope")
305 call <SID>OptionG("csprg", &csprg)
306 call append("$", "cscopetag\tuse cscope for tag commands")
307 call <SID>BinOptionG("cst", &cst)
308 call append("$", "cscopetagorder\t0 or 1; the order in which \":cstag\" performs a search")
309 call append("$", " \tset csto=" . &csto)
310 call append("$", "cscopeverbose\tgive messages when adding a cscope database")
311 call <SID>BinOptionG("csverb", &csverb)
312 call append("$", "cscopepathcomp\thow many components of the path to show")
313 call append("$", " \tset cspc=" . &cspc)
Bram Moolenaar1deee622010-07-24 20:35:12 +0200314 call append("$", "cscopequickfix\twhen to open a quickfix window for cscope")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 call <SID>OptionG("csqf", &csqf)
Bram Moolenaar251e1912011-06-19 05:09:16 +0200316 call append("$", "cscoperelative\tfile names in a cscope file are relative to that file")
317 call <SID>BinOptionG("csre", &csre)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318endif
319
320
321call <SID>Header("displaying text")
322call append("$", "scroll\tnumber of lines to scroll for CTRL-U and CTRL-D")
323call append("$", "\t(local to window)")
324call <SID>OptionL("scr")
325call append("$", "scrolloff\tnumber of screen lines to show around the cursor")
326call append("$", " \tset so=" . &so)
327call append("$", "wrap\tlong lines wrap")
Bram Moolenaar87768892018-05-15 21:42:51 +0200328call append("$", "\t(local to window)")
329call <SID>BinOptionL("wrap")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330call append("$", "linebreak\twrap long lines at a character in 'breakat'")
331call append("$", "\t(local to window)")
332call <SID>BinOptionL("lbr")
Bram Moolenaar597a4222014-06-25 14:39:50 +0200333call append("$", "breakindent\tpreserve indentation in wrapped text")
334call append("$", "\t(local to window)")
335call <SID>BinOptionL("bri")
336call append("$", "breakindentopt\tadjust breakindent behaviour")
337call append("$", "\t(local to window)")
338call <SID>OptionL("briopt")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339call append("$", "breakat\twhich characters might cause a line break")
340call <SID>OptionG("brk", &brk)
341call append("$", "showbreak\tstring to put before wrapped screen lines")
342call <SID>OptionG("sbr", &sbr)
343call append("$", "sidescroll\tminimal number of columns to scroll horizontally")
344call append("$", " \tset ss=" . &ss)
345call append("$", "sidescrolloff\tminimal number of columns to keep left and right of the cursor")
346call append("$", " \tset siso=" . &siso)
347call append("$", "display\tinclude \"lastline\" to show the last line even if it doesn't fit")
348call append("$", "\tinclude \"uhex\" to show unprintable characters as a hex number")
349call <SID>OptionG("dy", &dy)
350call append("$", "fillchars\tcharacters to use for the status line, folds and filler lines")
351call <SID>OptionG("fcs", &fcs)
352call append("$", "cmdheight\tnumber of lines used for the command-line")
353call append("$", " \tset ch=" . &ch)
354call append("$", "columns\twidth of the display")
355call append("$", " \tset co=" . &co)
356call append("$", "lines\tnumber of lines in the display")
357call append("$", " \tset lines=" . &lines)
Bram Moolenaar1b20d3d2010-07-24 20:44:02 +0200358call append("$", "window\tnumber of lines to scroll for CTRL-F and CTRL-B")
359call append("$", " \tset window=" . &window)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360call append("$", "lazyredraw\tdon't redraw while executing macros")
361call <SID>BinOptionG("lz", &lz)
Bram Moolenaar63ce8c02008-06-04 12:29:14 +0000362if has("reltime")
363 call append("$", "redrawtime\ttimeout for 'hlsearch' and :match highlighting in msec")
364 call append("$", " \tset rdt=" . &rdt)
365endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366call append("$", "writedelay\tdelay in msec for each char written to the display")
367call append("$", "\t(for debugging)")
368call append("$", " \tset wd=" . &wd)
369call append("$", "list\tshow <Tab> as ^I and end-of-line as $")
370call append("$", "\t(local to window)")
371call <SID>BinOptionL("list")
372call append("$", "listchars\tlist of strings used for list mode")
373call <SID>OptionG("lcs", &lcs)
374call append("$", "number\tshow the line number for each line")
375call append("$", "\t(local to window)")
376call <SID>BinOptionL("nu")
Bram Moolenaar64486672010-05-16 15:46:46 +0200377call append("$", "relativenumber\tshow the relative line number for each line")
378call append("$", "\t(local to window)")
379call <SID>BinOptionL("rnu")
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000380if 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")
384endif
Bram Moolenaar860cae12010-06-05 23:22:07 +0200385if has("conceal")
Bram Moolenaarfa9a3702010-07-24 15:48:31 +0200386 call append("$", "conceallevel\tcontrols whether concealable text is hidden")
Bram Moolenaar860cae12010-06-05 23:22:07 +0200387 call append("$", "\t(local to window)")
Bram Moolenaarfa9a3702010-07-24 15:48:31 +0200388 call <SID>OptionL("cole")
Bram Moolenaar4f99eae2010-07-24 15:56:43 +0200389 call append("$", "concealcursor\tmodes in which text in the cursor line can be concealed")
Bram Moolenaarfa9a3702010-07-24 15:48:31 +0200390 call append("$", "\t(local to window)")
391 call <SID>OptionL("cocu")
Bram Moolenaar860cae12010-06-05 23:22:07 +0200392endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393
394
Bram Moolenaar7887d882005-07-01 22:33:52 +0000395call <SID>Header("syntax, highlighting and spelling")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396call append("$", "background\t\"dark\" or \"light\"; the background color brightness")
397call <SID>OptionG("bg", &bg)
Bram Moolenaar314dd792019-02-03 15:27:20 +0100398call append("$", "filetype\ttype of file; triggers the FileType event when set")
399call append("$", "\t(local to buffer)")
400call <SID>OptionL("ft")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401if has("syntax")
402 call append("$", "syntax\tname of syntax highlighting used")
403 call append("$", "\t(local to buffer)")
404 call <SID>OptionL("syn")
Bram Moolenaar9ff70112005-07-11 22:29:03 +0000405 call append("$", "synmaxcol\tmaximum column to look for syntax items")
406 call append("$", "\t(local to buffer)")
407 call <SID>OptionL("smc")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408endif
409call append("$", "highlight\twhich highlighting to use for various occasions")
410call <SID>OptionG("hl", &hl)
411call append("$", "hlsearch\thighlight all matches for the last used search pattern")
412call <SID>BinOptionG("hls", &hls)
Bram Moolenaar8a24b792016-04-30 16:13:10 +0200413if has("termguicolors")
Bram Moolenaar8e3d1b62016-04-30 15:17:19 +0200414 call append("$", "termguicolors\tuse GUI colors for the terminal")
Bram Moolenaar868cfc12016-04-30 16:49:58 +0200415 call <SID>BinOptionG("tgc", &tgc)
Bram Moolenaar8e3d1b62016-04-30 15:17:19 +0200416endif
Bram Moolenaar7887d882005-07-01 22:33:52 +0000417if has("syntax")
Bram Moolenaarf71a3db2006-03-12 21:50:18 +0000418 call append("$", "cursorcolumn\thighlight the screen column of the cursor")
419 call append("$", "\t(local to window)")
420 call <SID>BinOptionL("cuc")
421 call append("$", "cursorline\thighlight the screen line of the cursor")
422 call append("$", "\t(local to window)")
423 call <SID>BinOptionL("cul")
Bram Moolenaar607cc1e2010-07-18 18:47:44 +0200424 call append("$", "colorcolumn\tcolumns to highlight")
425 call append("$", "\t(local to window)")
426 call <SID>OptionL("cc")
Bram Moolenaar7887d882005-07-01 22:33:52 +0000427 call append("$", "spell\thighlight spelling mistakes")
428 call append("$", "\t(local to window)")
429 call <SID>BinOptionL("spell")
430 call append("$", "spelllang\tlist of accepted languages")
431 call append("$", "\t(local to buffer)")
432 call <SID>OptionL("spl")
433 call append("$", "spellfile\tfile that \"zg\" adds good words to")
434 call append("$", "\t(local to buffer)")
435 call <SID>OptionL("spf")
Bram Moolenaar551f84f2005-07-06 22:29:20 +0000436 call append("$", "spellcapcheck\tpattern to locate the end of a sentence")
437 call append("$", "\t(local to buffer)")
438 call <SID>OptionL("spc")
Bram Moolenaar7887d882005-07-01 22:33:52 +0000439 call append("$", "spellsuggest\tmethods used to suggest corrections")
440 call <SID>OptionG("sps", &sps)
Bram Moolenaarac6e65f2005-08-29 22:25:38 +0000441 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing")
442 call <SID>OptionG("msm", &msm)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000443endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444
445
446call <SID>Header("multiple windows")
447call append("$", "laststatus\t0, 1 or 2; when to use a status line for the last window")
448call append("$", " \tset ls=" . &ls)
449if has("statusline")
450 call append("$", "statusline\talternate format to be used for a status line")
451 call <SID>OptionG("stl", &stl)
452endif
453call append("$", "equalalways\tmake all windows the same size when adding/removing windows")
454call <SID>BinOptionG("ea", &ea)
Bram Moolenaar314dd792019-02-03 15:27:20 +0100455call append("$", "eadirection\tin which direction 'equalalways' works: \"ver\", \"hor\" or \"both\"")
456call <SID>OptionG("ead", &ead)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000457call append("$", "winheight\tminimal number of lines used for the current window")
458call append("$", " \tset wh=" . &wh)
459call append("$", "winminheight\tminimal number of lines used for any window")
460call append("$", " \tset wmh=" . &wmh)
461call append("$", "winfixheight\tkeep the height of the window")
462call append("$", "\t(local to window)")
463call <SID>BinOptionL("wfh")
Bram Moolenaarbe4d5062006-03-18 21:30:13 +0000464call append("$", "winfixwidth\tkeep the width of the window")
465call append("$", "\t(local to window)")
466call <SID>BinOptionL("wfw")
Bram Moolenaar314dd792019-02-03 15:27:20 +0100467call append("$", "winwidth\tminimal number of columns used for the current window")
468call append("$", " \tset wiw=" . &wiw)
469call append("$", "winminwidth\tminimal number of columns used for any window")
470call append("$", " \tset wmw=" . &wmw)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471call append("$", "helpheight\tinitial height of the help window")
472call append("$", " \tset hh=" . &hh)
473if has("quickfix")
474 call append("$", "previewheight\tdefault height for the preview window")
475 call append("$", " \tset pvh=" . &pvh)
476 call append("$", "previewwindow\tidentifies the preview window")
477 call append("$", "\t(local to window)")
478 call <SID>BinOptionL("pvw")
479endif
480call append("$", "hidden\tdon't unload a buffer when no longer shown in a window")
481call <SID>BinOptionG("hid", &hid)
482call append("$", "switchbuf\t\"useopen\" and/or \"split\"; which window to use when jumping")
483call append("$", "\tto a buffer")
484call <SID>OptionG("swb", &swb)
485call append("$", "splitbelow\ta new window is put below the current one")
486call <SID>BinOptionG("sb", &sb)
Bram Moolenaar314dd792019-02-03 15:27:20 +0100487call append("$", "splitright\ta new window is put right of the current one")
488call <SID>BinOptionG("spr", &spr)
489call append("$", "scrollbind\tthis window scrolls together with other bound windows")
490call append("$", "\t(local to window)")
491call <SID>BinOptionL("scb")
492call append("$", "scrollopt\t\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'")
493call <SID>OptionG("sbo", &sbo)
494call append("$", "cursorbind\tthis window's cursor moves together with other bound windows")
495call append("$", "\t(local to window)")
496call <SID>BinOptionL("crb")
Bram Moolenaar74675a62017-07-15 13:53:23 +0200497if has("terminal")
Bram Moolenaar6d150f72018-04-21 20:03:20 +0200498 call append("$", "termwinsize\tsize of a terminal window")
Bram Moolenaar74675a62017-07-15 13:53:23 +0200499 call append("$", "\t(local to window)")
Bram Moolenaar6d150f72018-04-21 20:03:20 +0200500 call <SID>OptionL("tws")
501 call append("$", "termwinkey\tkey that precedes Vim commands in a terminal window")
Bram Moolenaar74675a62017-07-15 13:53:23 +0200502 call append("$", "\t(local to window)")
Bram Moolenaar6d150f72018-04-21 20:03:20 +0200503 call <SID>OptionL("twk")
504 call append("$", "termwinscroll\tmax number of lines to keep for scrollback in a terminal window")
505 call append("$", "\t(local to window)")
Bram Moolenaarc6ddce32019-02-08 12:47:03 +0100506 if has('win32')
507 call append("$", "termwintype\ttype of pty to use for a terminal window")
508 call <SID>OptionG("twt", &twt)
509 endif
Bram Moolenaar6d150f72018-04-21 20:03:20 +0200510 call <SID>OptionL("twsl")
Bram Moolenaar0aed9a22017-08-19 23:18:02 +0200511 if exists("&winptydll")
512 call append("$", "winptydll\tname of the winpty dynamic library")
513 call <SID>OptionG("winptydll", &winptydll)
514 endif
Bram Moolenaar74675a62017-07-15 13:53:23 +0200515endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000516
517
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000518call <SID>Header("multiple tab pages")
519call append("$", "showtabline\t0, 1 or 2; when to use a tab pages line")
520call append("$", " \tset stal=" . &stal)
521call append("$", "tabpagemax\tmaximum number of tab pages to open for -p and \"tab all\"")
522call append("$", " \tset tpm=" . &tpm)
523call append("$", "tabline\tcustom tab pages line")
524call <SID>OptionG("tal", &tal)
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000525if has("gui")
526 call append("$", "guitablabel\tcustom tab page label for the GUI")
527 call <SID>OptionG("gtl", &gtl)
528 call append("$", "guitabtooltip\tcustom tab page tooltip for the GUI")
529 call <SID>OptionG("gtt", &gtt)
530endif
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000531
532
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533call <SID>Header("terminal")
534call append("$", "term\tname of the used terminal")
535call <SID>OptionG("term", &term)
536call append("$", "ttytype\talias for 'term'")
537call <SID>OptionG("tty", &tty)
538call append("$", "ttybuiltin\tcheck built-in termcaps first")
539call <SID>BinOptionG("tbi", &tbi)
540call append("$", "ttyfast\tterminal connection is fast")
541call <SID>BinOptionG("tf", &tf)
542call append("$", "weirdinvert\tterminal that requires extra redrawing")
543call <SID>BinOptionG("wiv", &wiv)
544call append("$", "esckeys\trecognize keys that start with <Esc> in Insert mode")
545call <SID>BinOptionG("ek", &ek)
546call append("$", "scrolljump\tminimal number of lines to scroll at a time")
547call append("$", " \tset sj=" . &sj)
548call append("$", "ttyscroll\tmaximum number of lines to use scrolling instead of redrawing")
549call append("$", " \tset tsl=" . &tsl)
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200550if has("gui") || has("win32")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 call append("$", "guicursor\tspecifies what the cursor looks like in different modes")
552 call <SID>OptionG("gcr", &gcr)
553endif
554if has("title")
555 let &title = s:old_title
556 call append("$", "title\tshow info in the window title")
557 call <SID>BinOptionG("title", &title)
558 set notitle
559 call append("$", "titlelen\tpercentage of 'columns' used for the window title")
560 call append("$", " \tset titlelen=" . &titlelen)
561 call append("$", "titlestring\twhen not empty, string to be used for the window title")
562 call <SID>OptionG("titlestring", &titlestring)
563 call append("$", "titleold\tstring to restore the title to when exiting Vim")
564 call <SID>OptionG("titleold", &titleold)
565 let &icon = s:old_icon
566 call append("$", "icon\tset the text of the icon for this window")
567 call <SID>BinOptionG("icon", &icon)
568 set noicon
569 call append("$", "iconstring\twhen not empty, text for the icon of this window")
570 call <SID>OptionG("iconstring", &iconstring)
571endif
572if has("win32")
573 call append("$", "restorescreen\trestore the screen contents when exiting Vim")
574 call <SID>BinOptionG("rs", &rs)
575endif
576
577
578call <SID>Header("using the mouse")
579call append("$", "mouse\tlist of flags for using the mouse")
580call <SID>OptionG("mouse", &mouse)
581if has("gui")
582 call append("$", "mousefocus\tthe window with the mouse pointer becomes the current one")
583 call <SID>BinOptionG("mousef", &mousef)
584 call append("$", "mousehide\thide the mouse pointer while typing")
585 call <SID>BinOptionG("mh", &mh)
586endif
587call append("$", "mousemodel\t\"extend\", \"popup\" or \"popup_setpos\"; what the right")
588call append("$", "\tmouse button is used for")
589call <SID>OptionG("mousem", &mousem)
590call append("$", "mousetime\tmaximum time in msec to recognize a double-click")
591call append("$", " \tset mouset=" . &mouset)
592call append("$", "ttymouse\t\"xterm\", \"xterm2\", \"dec\" or \"netterm\"; type of mouse")
593call <SID>OptionG("ttym", &ttym)
594if has("mouseshape")
595 call append("$", "mouseshape\twhat the mouse pointer looks like in different modes")
596 call <SID>OptionG("mouses", &mouses)
597endif
598
599
600if has("gui")
601 call <SID>Header("GUI")
602 call append("$", "guifont\tlist of font names to be used in the GUI")
603 call <SID>OptionG("gfn", &gfn)
604 if has("xfontset")
605 call append("$", "guifontset\tpair of fonts to be used, for multibyte editing")
606 call <SID>OptionG("gfs", &gfs)
607 endif
608 call append("$", "guifontwide\tlist of font names to be used for double-wide characters")
609 call <SID>OptionG("gfw", &gfw)
610 if has("mac")
611 call append("$", "antialias\tuse smooth, antialiased fonts")
612 call <SID>BinOptionG("anti", &anti)
613 endif
614 call append("$", "guioptions\tlist of flags that specify how the GUI works")
615 call <SID>OptionG("go", &go)
616 if has("gui_gtk")
617 call append("$", "toolbar\t\"icons\", \"text\" and/or \"tooltips\"; how to show the toolbar")
618 call <SID>OptionG("tb", &tb)
619 if has("gui_gtk2")
Bram Moolenaar1deee622010-07-24 20:35:12 +0200620 call append("$", "toolbariconsize\tsize of toolbar icons")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 call <SID>OptionG("tbis", &tbis)
622 endif
623 call append("$", "guiheadroom\troom (in pixels) left above/below the window")
624 call append("$", " \tset ghr=" . &ghr)
625 endif
Bram Moolenaarfb539272014-08-22 19:21:47 +0200626 if has("directx")
627 call append("$", "renderoptions\toptions for text rendering")
628 call <SID>OptionG("rop", &rop)
629 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 call append("$", "guipty\tuse a pseudo-tty for I/O to external commands")
631 call <SID>BinOptionG("guipty", &guipty)
632 if has("browse")
633 call append("$", "browsedir\t\"last\", \"buffer\" or \"current\": which directory used for the file browser")
634 call <SID>OptionG("bsdir", &bsdir)
635 endif
636 if has("multi_lang")
637 call append("$", "langmenu\tlanguage to be used for the menus")
638 call <SID>OptionG("langmenu", &lm)
639 endif
640 call append("$", "menuitems\tmaximum number of items in one menu")
641 call append("$", " \tset mis=" . &mis)
642 if has("winaltkeys")
643 call append("$", "winaltkeys\t\"no\", \"yes\" or \"menu\"; how to use the ALT key")
644 call <SID>OptionG("wak", &wak)
645 endif
646 call append("$", "linespace\tnumber of pixel lines to use between characters")
647 call append("$", " \tset lsp=" . &lsp)
Bram Moolenaara2a80162017-11-21 23:09:50 +0100648 if has("balloon_eval") || has("balloon_eval_term")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 call append("$", "balloondelay\tdelay in milliseconds before a balloon may pop up")
650 call append("$", " \tset bdlay=" . &bdlay)
Bram Moolenaara2a80162017-11-21 23:09:50 +0100651 if has("balloon_eval")
652 call append("$", "ballooneval\tuse balloon evaluation in the GUI")
653 call <SID>BinOptionG("beval", &beval)
654 endif
655 if has("balloon_eval_term")
656 call append("$", "balloonevalterm\tuse balloon evaluation in the terminal")
657 call <SID>BinOptionG("bevalterm", &beval)
658 endif
Bram Moolenaar52b4b552005-03-07 23:00:57 +0000659 if has("eval")
660 call append("$", "balloonexpr\texpression to show in balloon eval")
661 call append("$", " \tset bexpr=" . &bexpr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 endif
663 endif
Bram Moolenaard5ab34b2007-05-05 17:15:44 +0000664 if exists("+macatsui")
Bram Moolenaarf9393ef2006-04-24 19:47:27 +0000665 call append("$", "macatsui\tuse ATSUI text drawing; disable to avoid display problems")
666 call <SID>OptionG("macatsui", &macatsui)
667 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668endif
669
670if has("printer")
671 call <SID>Header("printing")
Bram Moolenaar8299df92004-07-10 09:47:34 +0000672 call append("$", "printoptions\tlist of items that control the format of :hardcopy output")
673 call <SID>OptionG("popt", &popt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 call append("$", "printdevice\tname of the printer to be used for :hardcopy")
675 call <SID>OptionG("pdev", &pdev)
Bram Moolenaar8299df92004-07-10 09:47:34 +0000676 if has("postscript")
677 call append("$", "printexpr\texpression used to print the PostScript file for :hardcopy")
678 call <SID>OptionG("pexpr", &pexpr)
679 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680 call append("$", "printfont\tname of the font to be used for :hardcopy")
681 call <SID>OptionG("pfn", &pfn)
682 call append("$", "printheader\tformat of the header used for :hardcopy")
683 call <SID>OptionG("pheader", &pheader)
Bram Moolenaar8299df92004-07-10 09:47:34 +0000684 if has("postscript")
685 call append("$", "printencoding\tencoding used to print the PostScript file for :hardcopy")
686 call <SID>OptionG("penc", &penc)
687 endif
688 if has("multi_byte")
689 call append("$", "printmbcharset\tthe CJK character set to be used for CJK output from :hardcopy")
690 call <SID>OptionG("pmbcs", &pmbcs)
691 call append("$", "printmbfont\tlist of font names to be used for CJK output from :hardcopy")
692 call <SID>OptionG("pmbfn", &pmbfn)
693 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694endif
695
696call <SID>Header("messages and info")
697call append("$", "terse\tadd 's' flag in 'shortmess' (don't show search message)")
698call <SID>BinOptionG("terse", &terse)
699call append("$", "shortmess\tlist of flags to make messages shorter")
700call <SID>OptionG("shm", &shm)
701call append("$", "showcmd\tshow (partial) command keys in the status line")
702let &sc = s:old_sc
703call <SID>BinOptionG("sc", &sc)
704set nosc
705call append("$", "showmode\tdisplay the current mode in the status line")
706call <SID>BinOptionG("smd", &smd)
707call append("$", "ruler\tshow cursor position below each window")
708let &ru = s:old_ru
709call <SID>BinOptionG("ru", &ru)
710set noru
711if has("statusline")
712 call append("$", "rulerformat\talternate format to be used for the ruler")
713 call <SID>OptionG("ruf", &ruf)
714endif
715call append("$", "report\tthreshold for reporting number of changed lines")
716call append("$", " \tset report=" . &report)
717call append("$", "verbose\tthe higher the more messages are given")
718call append("$", " \tset vbs=" . &vbs)
Bram Moolenaar7887d882005-07-01 22:33:52 +0000719call append("$", "verbosefile\tfile to write messages in")
720call <SID>OptionG("vfile", &vfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721call append("$", "more\tpause listings when the screen is full")
722call <SID>BinOptionG("more", &more)
723if has("dialog_con") || has("dialog_gui")
724 call append("$", "confirm\tstart a dialog when a command fails")
725 call <SID>BinOptionG("cf", &cf)
726endif
727call append("$", "errorbells\tring the bell for error messages")
728call <SID>BinOptionG("eb", &eb)
729call append("$", "visualbell\tuse a visual bell instead of beeping")
730call <SID>BinOptionG("vb", &vb)
Bram Moolenaarf9132812015-07-21 19:19:13 +0200731call append("$", "belloff\tdo not ring the bell for these reasons")
Bram Moolenaardd1616e2015-07-22 22:22:59 +0200732call <SID>OptionG("belloff", &belloff)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733if has("multi_lang")
734 call append("$", "helplang\tlist of preferred languages for finding help")
735 call <SID>OptionG("hlg", &hlg)
736endif
737
738
739call <SID>Header("selecting text")
740call append("$", "selection\t\"old\", \"inclusive\" or \"exclusive\"; how selecting text behaves")
741call <SID>OptionG("sel", &sel)
742call append("$", "selectmode\t\"mouse\", \"key\" and/or \"cmd\"; when to start Select mode")
743call append("$", "\tinstead of Visual mode")
744call <SID>OptionG("slm", &slm)
745if has("clipboard")
746 call append("$", "clipboard\t\"unnamed\" to use the * register like unnamed register")
747 call append("$", "\t\"autoselect\" to always put selected text on the clipboard")
748 call <SID>OptionG("cb", &cb)
749endif
750call append("$", "keymodel\t\"startsel\" and/or \"stopsel\"; what special keys can do")
751call <SID>OptionG("km", &km)
752
753
754call <SID>Header("editing text")
755call append("$", "undolevels\tmaximum number of changes that can be undone")
Bram Moolenaar7d76c802014-10-15 22:51:52 +0200756call append("$", "\t(global or local to buffer)")
Bram Moolenaar9c474b22018-02-27 17:04:25 +0100757call append("$", " \tset ul=" . s:old_ul)
Bram Moolenaar4694a172016-04-21 14:05:23 +0200758call append("$", "undofile\tautomatically save and restore undo history")
759call <SID>BinOptionG("udf", &udf)
760call append("$", "undodir\tlist of directories for undo files")
761call <SID>OptionG("udir", &udir)
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200762call append("$", "undoreload\tmaximum number lines to save for undo on a buffer reload")
763call append("$", " \tset ur=" . &ur)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000764call append("$", "modified\tchanges have been made and not written to a file")
765call append("$", "\t(local to buffer)")
766call <SID>BinOptionL("mod")
767call append("$", "readonly\tbuffer is not to be written")
768call append("$", "\t(local to buffer)")
769call <SID>BinOptionL("ro")
770call append("$", "modifiable\tchanges to the text are not possible")
771call append("$", "\t(local to buffer)")
772call <SID>BinOptionL("ma")
773call append("$", "textwidth\tline length above which to break a line")
774call append("$", "\t(local to buffer)")
775call <SID>OptionL("tw")
776call append("$", "wrapmargin\tmargin from the right in which to break a line")
777call append("$", "\t(local to buffer)")
778call <SID>OptionL("wm")
779call append("$", "backspace\tspecifies what <BS>, CTRL-W, etc. can do in Insert mode")
780call append("$", " \tset bs=" . &bs)
781call append("$", "comments\tdefinition of what comment lines look like")
782call append("$", "\t(local to buffer)")
783call <SID>OptionL("com")
784call append("$", "formatoptions\tlist of flags that tell how automatic formatting works")
785call append("$", "\t(local to buffer)")
786call <SID>OptionL("fo")
Bram Moolenaar86b68352004-12-27 21:59:20 +0000787call append("$", "formatlistpat\tpattern to recognize a numbered list")
788call append("$", "\t(local to buffer)")
789call <SID>OptionL("flp")
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000790if has("eval")
791 call append("$", "formatexpr\texpression used for \"gq\" to format lines")
792 call append("$", "\t(local to buffer)")
793 call <SID>OptionL("fex")
794endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795if has("insert_expand")
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000796 call append("$", "complete\tspecifies how Insert mode completion works for CTRL-N and CTRL-P")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797 call append("$", "\t(local to buffer)")
798 call <SID>OptionL("cpt")
Bram Moolenaarbb15b652005-10-03 21:52:09 +0000799 call append("$", "completeopt\twhether to use a popup menu for Insert mode completion")
800 call <SID>OptionG("cot", &cot)
Bram Moolenaard3667a22006-03-16 21:35:52 +0000801 call append("$", "pumheight\tmaximum height of the popup menu")
802 call <SID>OptionG("ph", &ph)
Bram Moolenaar22f1d0e2018-02-27 14:53:30 +0100803 call append("$", "pumwidth\tminimum width of the popup menu")
804 call <SID>OptionG("pw", &pw)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +0000805 call append("$", "completefunc\tuser defined function for Insert mode completion")
806 call append("$", "\t(local to buffer)")
807 call <SID>OptionL("cfu")
Bram Moolenaarf75a9632005-09-13 21:20:47 +0000808 call append("$", "omnifunc\tfunction for filetype-specific Insert mode completion")
Bram Moolenaare344bea2005-09-01 20:46:49 +0000809 call append("$", "\t(local to buffer)")
810 call <SID>OptionL("ofu")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000811 call append("$", "dictionary\tlist of dictionary files for keyword completion")
812 call append("$", "\t(global or local to buffer)")
813 call <SID>OptionG("dict", &dict)
814 call append("$", "thesaurus\tlist of thesaurus files for keyword completion")
815 call append("$", "\t(global or local to buffer)")
816 call <SID>OptionG("tsr", &tsr)
817endif
818call append("$", "infercase\tadjust case of a keyword completion match")
819call append("$", "\t(local to buffer)")
820call <SID>BinOptionL("inf")
821if has("digraphs")
Bram Moolenaar2b7db932016-01-07 16:52:10 +0100822 call append("$", "digraph\tenable entering digraphs with c1 <BS> c2")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 call <SID>BinOptionG("dg", &dg)
824endif
825call append("$", "tildeop\tthe \"~\" command behaves like an operator")
826call <SID>BinOptionG("top", &top)
Bram Moolenaar4770d092006-01-12 23:22:24 +0000827call append("$", "operatorfunc\tfunction called for the\"g@\" operator")
828call <SID>OptionG("opfunc", &opfunc)
Bram Moolenaar1deee622010-07-24 20:35:12 +0200829call append("$", "showmatch\twhen inserting a bracket, briefly jump to its match")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830call <SID>BinOptionG("sm", &sm)
831call append("$", "matchtime\ttenth of a second to show a match for 'showmatch'")
832call append("$", " \tset mat=" . &mat)
833call append("$", "matchpairs\tlist of pairs that match for the \"%\" command")
834call append("$", "\t(local to buffer)")
835call <SID>OptionL("mps")
836call append("$", "joinspaces\tuse two spaces after '.' when joining a line")
837call <SID>BinOptionG("js", &js)
838call append("$", "nrformats\t\"alpha\", \"octal\" and/or \"hex\"; number formats recognized for")
839call append("$", "\tCTRL-A and CTRL-X commands")
840call append("$", "\t(local to buffer)")
841call <SID>OptionL("nf")
842
843
844call <SID>Header("tabs and indenting")
845call append("$", "tabstop\tnumber of spaces a <Tab> in the text stands for")
846call append("$", "\t(local to buffer)")
847call <SID>OptionL("ts")
848call append("$", "shiftwidth\tnumber of spaces used for each step of (auto)indent")
849call append("$", "\t(local to buffer)")
850call <SID>OptionL("sw")
Bram Moolenaar04958cb2018-06-23 19:23:02 +0200851if has("vartabs")
852 call append("$", "vartabstop\tlist of number of spaces a tab counts for")
853 call append("$", "\t(local to buffer)")
854 call <SID>OptionL("vts")
855 call append("$", "varsofttabstop\tlist of number of spaces a soft tabsstop counts for")
856 call append("$", "\t(local to buffer)")
857 call <SID>OptionL("vsts")
858endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859call append("$", "smarttab\ta <Tab> in an indent inserts 'shiftwidth' spaces")
860call <SID>BinOptionG("sta", &sta)
861call append("$", "softtabstop\tif non-zero, number of spaces to insert for a <Tab>")
862call append("$", "\t(local to buffer)")
863call <SID>OptionL("sts")
864call append("$", "shiftround\tround to 'shiftwidth' for \"<<\" and \">>\"")
865call <SID>BinOptionG("sr", &sr)
866call append("$", "expandtab\texpand <Tab> to spaces in Insert mode")
867call append("$", "\t(local to buffer)")
868call <SID>BinOptionL("et")
869call append("$", "autoindent\tautomatically set the indent of a new line")
870call append("$", "\t(local to buffer)")
871call <SID>BinOptionL("ai")
872if has("smartindent")
873 call append("$", "smartindent\tdo clever autoindenting")
874 call append("$", "\t(local to buffer)")
875 call <SID>BinOptionL("si")
876endif
877if has("cindent")
878 call append("$", "cindent\tenable specific indenting for C code")
879 call append("$", "\t(local to buffer)")
880 call <SID>BinOptionL("cin")
881 call append("$", "cinoptions\toptions for C-indenting")
882 call append("$", "\t(local to buffer)")
883 call <SID>OptionL("cino")
884 call append("$", "cinkeys\tkeys that trigger C-indenting in Insert mode")
885 call append("$", "\t(local to buffer)")
886 call <SID>OptionL("cink")
887 call append("$", "cinwords\tlist of words that cause more C-indent")
888 call append("$", "\t(local to buffer)")
889 call <SID>OptionL("cinw")
890 call append("$", "indentexpr\texpression used to obtain the indent of a line")
891 call append("$", "\t(local to buffer)")
892 call <SID>OptionL("inde")
893 call append("$", "indentkeys\tkeys that trigger indenting with 'indentexpr' in Insert mode")
894 call append("$", "\t(local to buffer)")
895 call <SID>OptionL("indk")
896endif
Bram Moolenaar1deee622010-07-24 20:35:12 +0200897call append("$", "copyindent\tcopy whitespace for indenting from previous line")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000898call append("$", "\t(local to buffer)")
899call <SID>BinOptionL("ci")
Bram Moolenaar1deee622010-07-24 20:35:12 +0200900call append("$", "preserveindent\tpreserve kind of whitespace when changing indent")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901call append("$", "\t(local to buffer)")
902call <SID>BinOptionL("pi")
903if has("lispindent")
904 call append("$", "lisp\tenable lisp mode")
905 call append("$", "\t(local to buffer)")
906 call <SID>BinOptionL("lisp")
907 call append("$", "lispwords\twords that change how lisp indenting works")
Bram Moolenaare7a88a82014-04-01 12:26:46 +0200908 call <SID>OptionL("lw")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909endif
910
911
912if has("folding")
913 call <SID>Header("folding")
914 call append("$", "foldenable\tset to display all folds open")
915 call append("$", "\t(local to window)")
916 call <SID>BinOptionL("fen")
917 call append("$", "foldlevel\tfolds with a level higher than this number will be closed")
918 call append("$", "\t(local to window)")
919 call <SID>OptionL("fdl")
920 call append("$", "foldlevelstart\tvalue for 'foldlevel' when starting to edit a file")
921 call append("$", " \tset fdls=" . &fdls)
922 call append("$", "foldcolumn\twidth of the column used to indicate folds")
923 call append("$", "\t(local to window)")
924 call <SID>OptionL("fdc")
925 call append("$", "foldtext\texpression used to display the text of a closed fold")
926 call append("$", "\t(local to window)")
927 call <SID>OptionL("fdt")
928 call append("$", "foldclose\tset to \"all\" to close a fold when the cursor leaves it")
929 call <SID>OptionG("fcl", &fcl)
930 call append("$", "foldopen\tspecifies for which commands a fold will be opened")
931 call <SID>OptionG("fdo", &fdo)
932 call append("$", "foldminlines\tminimum number of screen lines for a fold to be closed")
933 call append("$", "\t(local to window)")
934 call <SID>OptionL("fml")
935 call append("$", "commentstring\ttemplate for comments; used to put the marker in")
936 call <SID>OptionL("cms")
937 call append("$", "foldmethod\tfolding type: \"manual\", \"indent\", \"expr\", \"marker\" or \"syntax\"")
938 call append("$", "\t(local to window)")
939 call <SID>OptionL("fdm")
940 call append("$", "foldexpr\texpression used when 'foldmethod' is \"expr\"")
941 call append("$", "\t(local to window)")
942 call <SID>OptionL("fde")
943 call append("$", "foldignore\tused to ignore lines when 'foldmethod' is \"indent\"")
944 call append("$", "\t(local to window)")
945 call <SID>OptionL("fdi")
946 call append("$", "foldmarker\tmarkers used when 'foldmethod' is \"marker\"")
947 call append("$", "\t(local to window)")
948 call <SID>OptionL("fmr")
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +0100949 call append("$", "foldnestmax\tmaximum fold depth for when 'foldmethod' is \"indent\" or \"syntax\"")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 call append("$", "\t(local to window)")
951 call <SID>OptionL("fdn")
952endif
953
954
955if has("diff")
956 call <SID>Header("diff mode")
957 call append("$", "diff\tuse diff mode for the current window")
958 call append("$", "\t(local to window)")
959 call <SID>BinOptionL("diff")
960 call append("$", "diffopt\toptions for using diff mode")
961 call <SID>OptionG("dip", &dip)
962 call append("$", "diffexpr\texpression used to obtain a diff file")
963 call <SID>OptionG("dex", &dex)
964 call append("$", "patchexpr\texpression used to patch a file")
965 call <SID>OptionG("pex", &pex)
966endif
967
968
969call <SID>Header("mapping")
970call append("$", "maxmapdepth\tmaximum depth of mapping")
971call append("$", " \tset mmd=" . &mmd)
972call append("$", "remap\trecognize mappings in mapped keys")
973call <SID>BinOptionG("remap", &remap)
974call append("$", "timeout\tallow timing out halfway into a mapping")
975call <SID>BinOptionG("to", &to)
976call append("$", "ttimeout\tallow timing out halfway into a key code")
977call <SID>BinOptionG("ttimeout", &ttimeout)
978call append("$", "timeoutlen\ttime in msec for 'timeout'")
979call append("$", " \tset tm=" . &tm)
980call append("$", "ttimeoutlen\ttime in msec for 'ttimeout'")
981call append("$", " \tset ttm=" . &ttm)
982
983
984call <SID>Header("reading and writing files")
985call append("$", "modeline\tenable using settings from modelines when reading a file")
986call append("$", "\t(local to buffer)")
987call <SID>BinOptionL("ml")
988call append("$", "modelines\tnumber of lines to check for modelines")
989call append("$", " \tset mls=" . &mls)
990call append("$", "binary\tbinary file editing")
991call append("$", "\t(local to buffer)")
992call <SID>BinOptionL("bin")
993call append("$", "endofline\tlast line in the file has an end-of-line")
994call append("$", "\t(local to buffer)")
995call <SID>BinOptionL("eol")
Bram Moolenaarf9132812015-07-21 19:19:13 +0200996call append("$", "fixendofline\tfixes missing end-of-line at end of text file")
Bram Moolenaar34d72d42015-07-17 14:18:08 +0200997call append("$", "\t(local to buffer)")
998call <SID>BinOptionL("fixeol")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999if has("multi_byte")
Bram Moolenaar1deee622010-07-24 20:35:12 +02001000 call append("$", "bomb\tprepend a Byte Order Mark to the file")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001 call append("$", "\t(local to buffer)")
1002 call <SID>BinOptionL("bomb")
1003endif
1004call append("$", "fileformat\tend-of-line format: \"dos\", \"unix\" or \"mac\"")
1005call append("$", "\t(local to buffer)")
1006call <SID>OptionL("ff")
1007call append("$", "fileformats\tlist of file formats to look for when editing a file")
1008call <SID>OptionG("ffs", &ffs)
1009call append("$", "textmode\tobsolete, use 'fileformat'")
1010call append("$", "\t(local to buffer)")
1011call <SID>BinOptionL("tx")
1012call append("$", "textauto\tobsolete, use 'fileformats'")
1013call <SID>BinOptionG("ta", &ta)
1014call append("$", "write\twriting files is allowed")
1015call <SID>BinOptionG("write", &write)
1016call append("$", "writebackup\twrite a backup file before overwriting a file")
1017call <SID>BinOptionG("wb", &wb)
1018call append("$", "backup\tkeep a backup after overwriting a file")
1019call <SID>BinOptionG("bk", &bk)
1020call append("$", "backupskip\tpatterns that specify for which files a backup is not made")
1021call append("$", " \tset bsk=" . &bsk)
1022call append("$", "backupcopy\twhether to make the backup as a copy or rename the existing file")
Bram Moolenaar7d76c802014-10-15 22:51:52 +02001023call append("$", "\t(global or local to buffer)")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001024call append("$", " \tset bkc=" . &bkc)
1025call append("$", "backupdir\tlist of directories to put backup files in")
1026call <SID>OptionG("bdir", &bdir)
1027call append("$", "backupext\tfile name extension for the backup file")
1028call <SID>OptionG("bex", &bex)
1029call append("$", "autowrite\tautomatically write a file when leaving a modified buffer")
1030call <SID>BinOptionG("aw", &aw)
1031call append("$", "autowriteall\tas 'autowrite', but works with more commands")
1032call <SID>BinOptionG("awa", &awa)
1033call append("$", "writeany\talways write without asking for confirmation")
1034call <SID>BinOptionG("wa", &wa)
1035call append("$", "autoread\tautomatically read a file when it was modified outside of Vim")
1036call append("$", "\t(global or local to buffer)")
1037call <SID>BinOptionG("ar", &ar)
1038call append("$", "patchmode\tkeep oldest version of a file; specifies file name extension")
1039call <SID>OptionG("pm", &pm)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001040call append("$", "fsync\tforcibly sync the file to disk after writing it")
1041call <SID>BinOptionG("fs", &fs)
Bram Moolenaara06ecab2016-07-16 14:47:36 +02001042call append("$", "shortname\tuse 8.3 file names")
1043call append("$", "\t(local to buffer)")
1044call <SID>BinOptionL("sn")
Bram Moolenaar365bdf72010-07-24 20:57:44 +02001045call append("$", "cryptmethod\tencryption method for file writing: zip or blowfish")
Bram Moolenaarb702c842010-05-18 22:28:22 +02001046call append("$", "\t(local to buffer)")
1047call <SID>OptionL("cm")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048
1049
1050call <SID>Header("the swap file")
1051call append("$", "directory\tlist of directories for the swap file")
1052call <SID>OptionG("dir", &dir)
1053call append("$", "swapfile\tuse a swap file for this buffer")
1054call append("$", "\t(local to buffer)")
1055call <SID>BinOptionL("swf")
1056call append("$", "swapsync\t\"sync\", \"fsync\" or empty; how to flush a swap file to disk")
1057call <SID>OptionG("sws", &sws)
1058call append("$", "updatecount\tnumber of characters typed to cause a swap file update")
1059call append("$", " \tset uc=" . &uc)
1060call append("$", "updatetime\ttime in msec after which the swap file will be updated")
1061call append("$", " \tset ut=" . &ut)
1062call append("$", "maxmem\tmaximum amount of memory in Kbyte used for one buffer")
1063call append("$", " \tset mm=" . &mm)
1064call append("$", "maxmemtot\tmaximum amount of memory in Kbyte used for all buffers")
1065call append("$", " \tset mmt=" . &mmt)
1066
1067
1068call <SID>Header("command line editing")
1069call append("$", "history\thow many command lines are remembered ")
1070call append("$", " \tset hi=" . &hi)
1071call append("$", "wildchar\tkey that triggers command-line expansion")
1072call append("$", " \tset wc=" . &wc)
1073call append("$", "wildcharm\tlike 'wildchar' but can also be used in a mapping")
1074call append("$", " \tset wcm=" . &wcm)
1075call append("$", "wildmode\tspecifies how command line completion works")
1076call <SID>OptionG("wim", &wim)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00001077if has("wildoptions")
1078 call append("$", "wildoptions\tempty or \"tagfile\" to list file name of matching tags")
1079 call <SID>OptionG("wop", &wop)
1080endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081call append("$", "suffixes\tlist of file name extensions that have a lower priority")
1082call <SID>OptionG("su", &su)
1083if has("file_in_path")
1084 call append("$", "suffixesadd\tlist of file name extensions added when searching for a file")
1085 call append("$", "\t(local to buffer)")
1086 call <SID>OptionL("sua")
1087endif
1088if has("wildignore")
1089 call append("$", "wildignore\tlist of patterns to ignore files for file name completion")
1090 call <SID>OptionG("wig", &wig)
1091endif
Bram Moolenaar91fc43d2013-04-05 15:41:05 +02001092call append("$", "fileignorecase\tignore case when using file names")
1093call <SID>BinOptionG("fic", &fic)
Bram Moolenaar81af9252010-12-10 20:35:50 +01001094call append("$", "wildignorecase\tignore case when completing file names")
1095call <SID>BinOptionG("wic", &wic)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096if has("wildmenu")
1097 call append("$", "wildmenu\tcommand-line completion shows a list of matches")
1098 call <SID>BinOptionG("wmnu", &wmnu)
1099endif
Bram Moolenaar314dd792019-02-03 15:27:20 +01001100call append("$", "cedit\tkey used to open the command-line window")
1101call <SID>OptionG("cedit", &cedit)
1102call append("$", "cmdwinheight\theight of the command-line window")
1103call <SID>OptionG("cwh", &cwh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104
1105
1106call <SID>Header("executing external commands")
1107call append("$", "shell\tname of the shell program used for external commands")
1108call <SID>OptionG("sh", &sh)
1109if has("amiga")
1110 call append("$", "shelltype\twhen to use the shell or directly execute a command")
1111 call append("$", " \tset st=" . &st)
1112endif
1113call append("$", "shellquote\tcharacter(s) to enclose a shell command in")
1114call <SID>OptionG("shq", &shq)
1115call append("$", "shellxquote\tlike 'shellquote' but include the redirection")
1116call <SID>OptionG("sxq", &sxq)
Bram Moolenaardb7207e2012-02-22 17:30:19 +01001117call append("$", "shellxescape\tcharacters to escape when 'shellxquote' is (")
1118call <SID>OptionG("sxe", &sxe)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119call append("$", "shellcmdflag\targument for 'shell' to execute a command")
1120call <SID>OptionG("shcf", &shcf)
1121call append("$", "shellredir\tused to redirect command output to a file")
1122call <SID>OptionG("srr", &srr)
Bram Moolenaar551f84f2005-07-06 22:29:20 +00001123call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe")
1124call <SID>BinOptionG("stmp", &stmp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125call append("$", "equalprg\tprogram used for \"=\" command")
1126call append("$", "\t(global or local to buffer)")
1127call <SID>OptionG("ep", &ep)
1128call append("$", "formatprg\tprogram used to format lines with \"gq\" command")
1129call <SID>OptionG("fp", &fp)
1130call append("$", "keywordprg\tprogram used for the \"K\" command")
1131call <SID>OptionG("kp", &kp)
1132call append("$", "warn\twarn when using a shell command and a buffer has changes")
1133call <SID>BinOptionG("warn", &warn)
1134
1135
1136if has("quickfix")
1137 call <SID>Header("running make and jumping to errors")
1138 call append("$", "errorfile\tname of the file that contains error messages")
1139 call <SID>OptionG("ef", &ef)
1140 call append("$", "errorformat\tlist of formats for error messages")
1141 call append("$", "\t(global or local to buffer)")
1142 call <SID>OptionG("efm", &efm)
1143 call append("$", "makeprg\tprogram used for the \":make\" command")
1144 call append("$", "\t(global or local to buffer)")
1145 call <SID>OptionG("mp", &mp)
1146 call append("$", "shellpipe\tstring used to put the output of \":make\" in the error file")
1147 call <SID>OptionG("sp", &sp)
1148 call append("$", "makeef\tname of the errorfile for the 'makeprg' command")
1149 call <SID>OptionG("mef", &mef)
1150 call append("$", "grepprg\tprogram used for the \":grep\" command")
1151 call append("$", "\t(global or local to buffer)")
1152 call <SID>OptionG("gp", &gp)
1153 call append("$", "grepformat\tlist of formats for output of 'grepprg'")
1154 call <SID>OptionG("gfm", &gfm)
Bram Moolenaarad4187e2017-03-06 21:45:20 +01001155 call append("$", "makeencoding\tencoding of the \":make\" and \":grep\" output")
1156 call append("$", "\t(global or local to buffer)")
1157 call <SID>OptionG("menc", &menc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158endif
1159
1160
Bram Moolenaara06ecab2016-07-16 14:47:36 +02001161if has("win32") || has("osfiletype")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001162 call <SID>Header("system specific")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 if has("osfiletype")
1164 call append("$", "osfiletype\tOS-specific information about the type of file")
1165 call append("$", "\t(local to buffer)")
1166 call <SID>OptionL("oft")
1167 endif
Bram Moolenaara06ecab2016-07-16 14:47:36 +02001168 if has("win32")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 call append("$", "shellslash\tuse forward slashes in file names; for Unix-like shells")
1170 call <SID>BinOptionG("ssl", &ssl)
1171 endif
1172endif
1173
1174
1175call <SID>Header("language specific")
1176call append("$", "isfname\tspecifies the characters in a file name")
1177call <SID>OptionG("isf", &isf)
1178call append("$", "isident\tspecifies the characters in an identifier")
1179call <SID>OptionG("isi", &isi)
1180call append("$", "iskeyword\tspecifies the characters in a keyword")
1181call append("$", "\t(local to buffer)")
1182call <SID>OptionL("isk")
1183call append("$", "isprint\tspecifies printable characters")
1184call <SID>OptionG("isp", &isp)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00001185if has("textobjects")
1186 call append("$", "quoteescape\tspecifies escape characters in a string")
1187 call append("$", "\t(local to buffer)")
1188 call <SID>OptionL("qe")
1189endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190if has("rightleft")
1191 call append("$", "rightleft\tdisplay the buffer right-to-left")
1192 call append("$", "\t(local to window)")
1193 call <SID>BinOptionL("rl")
Bram Moolenaar1deee622010-07-24 20:35:12 +02001194 call append("$", "rightleftcmd\twhen to edit the command-line right-to-left")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 call append("$", "\t(local to window)")
1196 call <SID>OptionL("rlc")
Bram Moolenaar1deee622010-07-24 20:35:12 +02001197 call append("$", "revins\tinsert characters backwards")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 call <SID>BinOptionG("ri", &ri)
Bram Moolenaar1deee622010-07-24 20:35:12 +02001199 call append("$", "allowrevins\tallow CTRL-_ in Insert and Command-line mode to toggle 'revins'")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 call <SID>BinOptionG("ari", &ari)
1201 call append("$", "aleph\tthe ASCII code for the first letter of the Hebrew alphabet")
1202 call append("$", " \tset al=" . &al)
1203 call append("$", "hkmap\tuse Hebrew keyboard mapping")
1204 call <SID>BinOptionG("hk", &hk)
1205 call append("$", "hkmapp\tuse phonetic Hebrew keyboard mapping")
1206 call <SID>BinOptionG("hkp", &hkp)
1207endif
1208if has("farsi")
1209 call append("$", "altkeymap\tuse Farsi as the second language when 'revins' is set")
1210 call <SID>BinOptionG("akm", &akm)
1211 call append("$", "fkmap\tuse Farsi keyboard mapping")
1212 call <SID>BinOptionG("fk", &fk)
1213endif
1214if has("arabic")
Bram Moolenaar1deee622010-07-24 20:35:12 +02001215 call append("$", "arabic\tprepare for editing Arabic text")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 call append("$", "\t(local to window)")
1217 call <SID>BinOptionL("arab")
Bram Moolenaar1deee622010-07-24 20:35:12 +02001218 call append("$", "arabicshape\tperform shaping of Arabic characters")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 call <SID>BinOptionG("arshape", &arshape)
Bram Moolenaar1deee622010-07-24 20:35:12 +02001220 call append("$", "termbidi\tterminal will perform bidi handling")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 call <SID>BinOptionG("tbidi", &tbidi)
1222endif
1223if has("keymap")
Bram Moolenaar2b7db932016-01-07 16:52:10 +01001224 call append("$", "keymap\tname of a keyboard mapping")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 call <SID>OptionL("kmp")
1226endif
1227if has("langmap")
Bram Moolenaar2f3b5102014-11-19 18:54:17 +01001228 call append("$", "langmap\tlist of characters that are translated in Normal mode")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 call <SID>OptionG("lmap", &lmap)
Bram Moolenaare4a3bcf2016-08-26 19:52:37 +02001230 call append("$", "langremap\tapply 'langmap' to mapped characters")
1231 call <SID>BinOptionG("lrm", &lrm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232endif
1233if has("xim")
1234 call append("$", "imdisable\twhen set never use IM; overrules following IM options")
1235 call <SID>BinOptionG("imd", &imd)
1236endif
1237call append("$", "iminsert\tin Insert mode: 1: use :lmap; 2: use IM; 0: neither")
1238call append("$", "\t(local to window)")
1239call <SID>OptionL("imi")
Bram Moolenaar37c64c72017-09-19 22:06:03 +02001240call append("$", "imstyle\tinput method style, 0: on-the-spot, 1: over-the-spot")
1241call <SID>OptionG("imst", &imst)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242call append("$", "imsearch\tentering a search pattern: 1: use :lmap; 2: use IM; 0: neither")
1243call append("$", "\t(local to window)")
1244call <SID>OptionL("ims")
1245if has("xim")
1246 call append("$", "imcmdline\twhen set always use IM when starting to edit a command line")
1247 call <SID>BinOptionG("imc", &imc)
Bram Moolenaar14b69452013-06-29 23:05:20 +02001248 call append("$", "imstatusfunc\tfunction to obtain IME status")
1249 call <SID>OptionG("imsf", &imsf)
1250 call append("$", "imactivatefunc\tfunction to enable/disable IME")
1251 call <SID>OptionG("imaf", &imaf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252endif
1253
1254
1255if has("multi_byte")
1256 call <SID>Header("multi-byte characters")
1257 call append("$", "encoding\tcharacter encoding used in Vim: \"latin1\", \"utf-8\"")
1258 call append("$", "\t\"euc-jp\", \"big5\", etc.")
1259 call <SID>OptionG("enc", &enc)
1260 call append("$", "fileencoding\tcharacter encoding for the current file")
1261 call append("$", "\t(local to buffer)")
1262 call <SID>OptionL("fenc")
1263 call append("$", "fileencodings\tautomatically detected character encodings")
1264 call <SID>OptionG("fencs", &fencs)
1265 call append("$", "termencoding\tcharacter encoding used by the terminal")
1266 call <SID>OptionG("tenc", &tenc)
1267 call append("$", "charconvert\texpression used for character encoding conversion")
1268 call <SID>OptionG("ccv", &ccv)
Bram Moolenaar1deee622010-07-24 20:35:12 +02001269 call append("$", "delcombine\tdelete combining (composing) characters on their own")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 call <SID>BinOptionG("deco", &deco)
Bram Moolenaar1deee622010-07-24 20:35:12 +02001271 call append("$", "maxcombine\tmaximum number of combining (composing) characters displayed")
Bram Moolenaar4e427192006-03-10 21:34:27 +00001272 call <SID>OptionG("mco", &mco)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 if has("xim") && has("gui_gtk")
1274 call append("$", "imactivatekey\tkey that activates the X input method")
1275 call <SID>OptionG("imak", &imak)
1276 endif
Bram Moolenaar1deee622010-07-24 20:35:12 +02001277 call append("$", "ambiwidth\twidth of ambiguous width characters")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 call <SID>OptionG("ambw", &ambw)
Bram Moolenaar3848e002016-03-19 18:42:29 +01001279 call append("$", "emoji\temoji characters are full width")
1280 call <SID>BinOptionG("emo", &emo)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281endif
1282
1283
1284call <SID>Header("various")
Bram Moolenaar314dd792019-02-03 15:27:20 +01001285call append("$", "virtualedit\twhen to use virtual editing: \"block\", \"insert\" and/or \"all\"")
1286call <SID>OptionG("ve", &ve)
1287call append("$", "eventignore\tlist of autocommand events which are to be ignored")
1288call <SID>OptionG("ei", &ei)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289call append("$", "loadplugins\tload plugin scripts when starting up")
1290call <SID>BinOptionG("lpl", &lpl)
1291call append("$", "exrc\tenable reading .vimrc/.exrc/.gvimrc in the current directory")
1292call <SID>BinOptionG("ex", &ex)
1293call append("$", "secure\tsafer working with script files in the current directory")
1294call <SID>BinOptionG("secure", &secure)
1295call append("$", "gdefault\tuse the 'g' flag for \":substitute\"")
1296call <SID>BinOptionG("gd", &gd)
1297call append("$", "edcompatible\t'g' and 'c' flags of \":substitute\" toggle")
1298call <SID>BinOptionG("ed", &ed)
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001299if exists("+opendevice")
1300 call append("$", "opendevice\tallow reading/writing devices")
1301 call <SID>BinOptionG("odev", &odev)
1302endif
1303if exists("+maxfuncdepth")
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 call append("$", "maxfuncdepth\tmaximum depth of function calls")
1305 call append("$", " \tset mfd=" . &mfd)
Bram Moolenaard5ab34b2007-05-05 17:15:44 +00001306endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307if has("mksession")
1308 call append("$", "sessionoptions\tlist of words that specifies what to put in a session file")
1309 call <SID>OptionG("ssop", &ssop)
1310 call append("$", "viewoptions\tlist of words that specifies what to save for :mkview")
1311 call <SID>OptionG("vop", &vop)
1312 call append("$", "viewdir\tdirectory where to store files with :mkview")
1313 call <SID>OptionG("vdir", &vdir)
1314endif
1315if has("viminfo")
1316 call append("$", "viminfo\tlist that specifies what to write in the viminfo file")
1317 call <SID>OptionG("vi", &vi)
Bram Moolenaarf55e4c82017-08-01 20:44:53 +02001318 call append("$", "viminfofile\tfile name used for the viminfo file")
1319 call <SID>OptionG("vif", &vif)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320endif
1321if has("quickfix")
1322 call append("$", "bufhidden\twhat happens with a buffer when it's no longer in a window")
1323 call append("$", "\t(local to buffer)")
1324 call <SID>OptionL("bh")
1325 call append("$", "buftype\t\"\", \"nofile\", \"nowrite\" or \"quickfix\": type of buffer")
1326 call append("$", "\t(local to buffer)")
1327 call <SID>OptionL("bt")
1328endif
1329call append("$", "buflisted\twhether the buffer shows up in the buffer list")
1330call append("$", "\t(local to buffer)")
1331call <SID>BinOptionL("bl")
1332call append("$", "debug\tset to \"msg\" to see all error messages")
1333call append("$", " \tset debug=" . &debug)
Bram Moolenaar95ec9d62016-08-12 18:29:59 +02001334if has("signs")
1335 call append("$", "signcolumn\twhether to show the signcolumn")
1336 call append("$", "\t(local to window)")
1337 call <SID>OptionL("scl")
1338endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00001339if has("mzscheme")
1340 call append("$", "mzquantum\tinterval in milliseconds between polls for MzScheme threads")
1341 call append("$", " \tset mzq=" . &mzq)
1342endif
Bram Moolenaard4ece232015-11-10 19:48:14 +01001343if exists("&luadll")
1344 call append("$", "luadll\tname of the Lua dynamic library")
1345 call <SID>OptionG("luadll", &luadll)
1346endif
1347if exists("&perldll")
1348 call append("$", "perldll\tname of the Perl dynamic library")
1349 call <SID>OptionG("perldll", &perldll)
1350endif
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01001351if has('pythonx')
1352 call append("$", "pyxversion\twhether to use Python 2 or 3")
1353 call append("$", " \tset pyx=" . &wd)
1354endif
Bram Moolenaard4ece232015-11-10 19:48:14 +01001355if exists("&pythondll")
1356 call append("$", "pythondll\tname of the Python 2 dynamic library")
1357 call <SID>OptionG("pythondll", &pythondll)
1358endif
Bram Moolenaar94073162018-01-31 21:49:05 +01001359if exists("&pythonhome")
1360 call append("$", "pythonhome\tname of the Python 2 home directory")
1361 call <SID>OptionG("pythonhome", &pythonhome)
1362endif
Bram Moolenaard4ece232015-11-10 19:48:14 +01001363if exists("&pythonthreedll")
1364 call append("$", "pythonthreedll\tname of the Python 3 dynamic library")
1365 call <SID>OptionG("pythonthreedll", &pythonthreedll)
1366endif
Bram Moolenaar94073162018-01-31 21:49:05 +01001367if exists("&pythonthreehome")
1368 call append("$", "pythonthreehome\tname of the Python 3 home directory")
1369 call <SID>OptionG("pythonthreehome", &pythonthreehome)
1370endif
Bram Moolenaara93f9752015-11-10 20:45:09 +01001371if exists("&rubydll")
1372 call append("$", "rubydll\tname of the Ruby dynamic library")
1373 call <SID>OptionG("rubydll", &rubydll)
1374endif
Bram Moolenaar8a5115c2016-01-09 19:41:11 +01001375if exists("&tcldll")
1376 call append("$", "tcldll\tname of the Tcl dynamic library")
1377 call <SID>OptionG("tcldll", &tcldll)
1378endif
Bram Moolenaar01164a62017-11-02 22:58:42 +01001379if exists("&mzschemedll")
1380 call append("$", "mzschemedll\tname of the Tcl dynamic library")
1381 call <SID>OptionG("mzschemedll", &mzschemedll)
1382 call append("$", "mzschemegcdll\tname of the Tcl GC dynamic library")
1383 call <SID>OptionG("mzschemegcdll", &mzschemegcdll)
1384endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385
1386set cpo&vim
1387
1388" go to first line
13891
1390
1391" reset 'modified', so that ":q" can be used to close the window
1392setlocal nomodified
1393
1394if has("syntax")
1395 " Use Vim highlighting, with some additional stuff
1396 setlocal ft=vim
1397 syn match optwinHeader "^ \=[0-9].*"
1398 syn match optwinName "^[a-z]*\t" nextgroup=optwinComment
1399 syn match optwinComment ".*" contained
1400 syn match optwinComment "^\t.*"
1401 if !exists("did_optwin_syntax_inits")
1402 let did_optwin_syntax_inits = 1
1403 hi link optwinHeader Title
1404 hi link optwinName Identifier
1405 hi link optwinComment Comment
1406 endif
1407endif
1408
1409" Install autocommands to enable mappings in option-window
1410noremap <silent> <buffer> <CR> <C-\><C-N>:call <SID>CR()<CR>
1411inoremap <silent> <buffer> <CR> <Esc>:call <SID>CR()<CR>
1412noremap <silent> <buffer> <Space> :call <SID>Space()<CR>
1413
1414" Make the buffer be deleted when the window is closed.
1415setlocal buftype=nofile bufhidden=delete noswapfile
1416
1417augroup optwin
1418 au! BufUnload,BufHidden option-window nested
1419 \ call <SID>unload() | delfun <SID>unload
1420augroup END
1421
1422fun! <SID>unload()
1423 delfun <SID>CR
1424 delfun <SID>Space
1425 delfun <SID>Find
1426 delfun <SID>Update
1427 delfun <SID>OptionL
1428 delfun <SID>OptionG
1429 delfun <SID>BinOptionL
1430 delfun <SID>BinOptionG
1431 delfun <SID>Header
1432 au! optwin
1433endfun
1434
1435" Restore the previous value of 'title' and 'icon'.
1436let &title = s:old_title
1437let &icon = s:old_icon
1438let &ru = s:old_ru
1439let &sc = s:old_sc
1440let &cpo = s:cpo_save
Bram Moolenaar9c474b22018-02-27 17:04:25 +01001441let &ul = s:old_ul
1442unlet s:old_title s:old_icon s:old_ru s:old_sc s:cpo_save s:idx s:lnum s:old_ul
Bram Moolenaar251e1912011-06-19 05:09:16 +02001443
1444" vim: ts=8 sw=2 sts=2