annotate runtime/optwin.vim @ 20753:661eb972cb22

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