Mercurial > vim
annotate runtime/menu.vim @ 26888:62d4edc0029b
Added tag v8.2.3972 for changeset 6123396796167638d5b15a8974ae9e4387c24880
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 01 Jan 2022 17:30:03 +0100 |
parents | f0d7cb510ce3 |
children | f37561549ec2 |
rev | line source |
---|---|
7 | 1 " Vim support file to define the default menus |
2 " You can also use this as a start for your own set of menus. | |
3 " | |
4 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
26708 | 5 " Last Change: 2021 Dec 22 |
7 | 6 |
7 " Note that ":an" (short for ":anoremenu") is often used to make a menu work | |
8 " in all modes and avoid side effects from mappings defined by the user. | |
9 | |
10 " Make sure the '<' and 'C' flags are not included in 'cpoptions', otherwise | |
11 " <CR> would not be recognized. See ":help 'cpoptions'". | |
12 let s:cpo_save = &cpo | |
13 set cpo&vim | |
14 | |
15 " Avoid installing the menus twice | |
16 if !exists("did_install_default_menus") | |
17 let did_install_default_menus = 1 | |
18 | |
19 | |
20 if exists("v:lang") || &langmenu != "" | |
21 " Try to find a menu translation file for the current language. | |
22 if &langmenu != "" | |
23 if &langmenu =~ "none" | |
24 let s:lang = "" | |
25 else | |
26 let s:lang = &langmenu | |
27 endif | |
28 else | |
29 let s:lang = v:lang | |
30 endif | |
31 " A language name must be at least two characters, don't accept "C" | |
18186 | 32 " Also skip "en_US" to avoid picking up "en_gb" translations. |
33 if strlen(s:lang) > 1 && s:lang !~? '^en_us' | |
7 | 34 " When the language does not include the charset add 'encoding' |
35 if s:lang =~ '^\a\a$\|^\a\a_\a\a$' | |
36 let s:lang = s:lang . '.' . &enc | |
37 endif | |
38 | |
39 " We always use a lowercase name. | |
40 " Change "iso-8859" to "iso_8859" and "iso8859" to "iso_8859", some | |
41 " systems appear to use this. | |
42 " Change spaces to underscores. | |
43 let s:lang = substitute(tolower(s:lang), '\.iso-', ".iso_", "") | |
44 let s:lang = substitute(s:lang, '\.iso8859', ".iso_8859", "") | |
45 let s:lang = substitute(s:lang, " ", "_", "g") | |
46 " Remove "@euro", otherwise "LC_ALL=de_DE@euro gvim" will show English menus | |
47 let s:lang = substitute(s:lang, "@euro", "", "") | |
48 " Change "iso_8859-1" and "iso_8859-15" to "latin1", we always use the | |
49 " same menu file for them. | |
50 let s:lang = substitute(s:lang, 'iso_8859-15\=$', "latin1", "") | |
51 menutrans clear | |
52 exe "runtime! lang/menu_" . s:lang . ".vim" | |
53 | |
54 if !exists("did_menu_trans") | |
55 " There is no exact match, try matching with a wildcard added | |
56 " (e.g. find menu_de_de.iso_8859-1.vim if s:lang == de_DE). | |
57 let s:lang = substitute(s:lang, '\.[^.]*', "", "") | |
170 | 58 exe "runtime! lang/menu_" . s:lang . "[^a-z]*vim" |
7 | 59 |
14385
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
60 if !exists("did_menu_trans") && s:lang =~ '_' |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
61 " If the language includes a region try matching without that region. |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
62 " (e.g. find menu_de.vim if s:lang == de_DE). |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
63 let langonly = substitute(s:lang, '_.*', "", "") |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
64 exe "runtime! lang/menu_" . langonly . "[^a-z]*vim" |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
65 endif |
696794fe4bce
patch 8.1.0207: need many menu translation files to cover regions
Christian Brabandt <cb@256bit.org>
parents:
14249
diff
changeset
|
66 |
205 | 67 if !exists("did_menu_trans") && strlen($LANG) > 1 && s:lang !~ '^en_us' |
7 | 68 " On windows locale names are complicated, try using $LANG, it might |
205 | 69 " have been set by set_init_1(). But don't do this for "en" or "en_us". |
148 | 70 " But don't match "slovak" when $LANG is "sl". |
71 exe "runtime! lang/menu_" . tolower($LANG) . "[^a-z]*vim" | |
7 | 72 endif |
73 endif | |
74 endif | |
75 endif | |
76 | |
77 | |
78 " Help menu | |
79 an 9999.10 &Help.&Overview<Tab><F1> :help<CR> | |
80 an 9999.20 &Help.&User\ Manual :help usr_toc<CR> | |
11062 | 81 an 9999.30 &Help.&How-To\ Links :help how-to<CR> |
7 | 82 an <silent> 9999.40 &Help.&Find\.\.\. :call <SID>Helpfind()<CR> |
83 an 9999.45 &Help.-sep1- <Nop> | |
84 an 9999.50 &Help.&Credits :help credits<CR> | |
85 an 9999.60 &Help.Co&pying :help copying<CR> | |
86 an 9999.70 &Help.&Sponsor/Register :help sponsor<CR> | |
87 an 9999.70 &Help.O&rphans :help kcc<CR> | |
88 an 9999.75 &Help.-sep2- <Nop> | |
89 an 9999.80 &Help.&Version :version<CR> | |
90 an 9999.90 &Help.&About :intro<CR> | |
91 | |
22439
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
92 if exists(':tlmenu') |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
93 tlnoremenu 9999.10 &Help.&Overview<Tab><F1> <C-W>:help<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
94 tlnoremenu 9999.20 &Help.&User\ Manual <C-W>:help usr_toc<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
95 tlnoremenu 9999.30 &Help.&How-To\ Links <C-W>:help how-to<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
96 tlnoremenu <silent> 9999.40 &Help.&Find\.\.\. <C-W>:call <SID>Helpfind()<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
97 tlnoremenu 9999.45 &Help.-sep1- <Nop> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
98 tlnoremenu 9999.50 &Help.&Credits <C-W>:help credits<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
99 tlnoremenu 9999.60 &Help.Co&pying <C-W>:help copying<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
100 tlnoremenu 9999.70 &Help.&Sponsor/Register <C-W>:help sponsor<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
101 tlnoremenu 9999.70 &Help.O&rphans <C-W>:help kcc<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
102 tlnoremenu 9999.75 &Help.-sep2- <Nop> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
103 tlnoremenu 9999.80 &Help.&Version <C-W>:version<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
104 tlnoremenu 9999.90 &Help.&About <C-W>:intro<CR> |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
105 endif |
445799159195
patch 8.2.1768: cannot use the help menu from a terminal window
Bram Moolenaar <Bram@vim.org>
parents:
20856
diff
changeset
|
106 |
7 | 107 fun! s:Helpfind() |
108 if !exists("g:menutrans_help_dialog") | |
109 let g:menutrans_help_dialog = "Enter a command or word to find help on:\n\nPrepend i_ for Input mode commands (e.g.: i_CTRL-X)\nPrepend c_ for command-line editing commands (e.g.: c_<Del>)\nPrepend ' for an option name (e.g.: 'shiftwidth')" | |
110 endif | |
111 let h = inputdialog(g:menutrans_help_dialog) | |
112 if h != "" | |
113 let v:errmsg = "" | |
114 silent! exe "help " . h | |
115 if v:errmsg != "" | |
116 echo v:errmsg | |
117 endif | |
118 endif | |
119 endfun | |
120 | |
121 " File menu | |
122 an 10.310 &File.&Open\.\.\.<Tab>:e :browse confirm e<CR> | |
123 an 10.320 &File.Sp&lit-Open\.\.\.<Tab>:sp :browse sp<CR> | |
688 | 124 an 10.320 &File.Open\ Tab\.\.\.<Tab>:tabnew :browse tabnew<CR> |
7 | 125 an 10.325 &File.&New<Tab>:enew :confirm enew<CR> |
126 an <silent> 10.330 &File.&Close<Tab>:close | |
2729
12f838be9c59
Updated runtime file. Fix Italian translations.
Bram Moolenaar <bram@vim.org>
parents:
2325
diff
changeset
|
127 \ :if winheight(2) < 0 && tabpagewinnr(2) == 0 <Bar> |
7 | 128 \ confirm enew <Bar> |
129 \ else <Bar> | |
130 \ confirm close <Bar> | |
131 \ endif<CR> | |
132 an 10.335 &File.-SEP1- <Nop> | |
133 an <silent> 10.340 &File.&Save<Tab>:w :if expand("%") == ""<Bar>browse confirm w<Bar>else<Bar>confirm w<Bar>endif<CR> | |
134 an 10.350 &File.Save\ &As\.\.\.<Tab>:sav :browse confirm saveas<CR> | |
135 | |
136 if has("diff") | |
137 an 10.400 &File.-SEP2- <Nop> | |
11062 | 138 an 10.410 &File.Split\ &Diff\ With\.\.\. :browse vert diffsplit<CR> |
7 | 139 an 10.420 &File.Split\ Patched\ &By\.\.\. :browse vert diffpatch<CR> |
140 endif | |
141 | |
142 if has("printer") | |
143 an 10.500 &File.-SEP3- <Nop> | |
144 an 10.510 &File.&Print :hardcopy<CR> | |
145 vunmenu &File.&Print | |
146 vnoremenu &File.&Print :hardcopy<CR> | |
147 elseif has("unix") | |
148 an 10.500 &File.-SEP3- <Nop> | |
149 an 10.510 &File.&Print :w !lpr<CR> | |
150 vunmenu &File.&Print | |
151 vnoremenu &File.&Print :w !lpr<CR> | |
152 endif | |
153 an 10.600 &File.-SEP4- <Nop> | |
154 an 10.610 &File.Sa&ve-Exit<Tab>:wqa :confirm wqa<CR> | |
155 an 10.620 &File.E&xit<Tab>:qa :confirm qa<CR> | |
156 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
157 func s:SelectAll() |
4073 | 158 exe "norm! gg" . (&slm == "" ? "VG" : "gH\<C-O>G") |
7 | 159 endfunc |
160 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
161 func s:FnameEscape(fname) |
1648 | 162 if exists('*fnameescape') |
163 return fnameescape(a:fname) | |
2034 | 164 endif |
1648 | 165 return escape(a:fname, " \t\n*?[{`$\\%#'\"|!<") |
166 endfunc | |
7 | 167 |
168 " Edit menu | |
169 an 20.310 &Edit.&Undo<Tab>u u | |
170 an 20.320 &Edit.&Redo<Tab>^R <C-R> | |
171 an 20.330 &Edit.Rep&eat<Tab>\. . | |
172 | |
173 an 20.335 &Edit.-SEP1- <Nop> | |
174 vnoremenu 20.340 &Edit.Cu&t<Tab>"+x "+x | |
175 vnoremenu 20.350 &Edit.&Copy<Tab>"+y "+y | |
176 cnoremenu 20.350 &Edit.&Copy<Tab>"+y <C-Y> | |
18594 | 177 if exists(':tlmenu') |
178 tlnoremenu 20.350 &Edit.&Copy<Tab>"+y <C-W>:<C-Y><CR> | |
179 endif | |
7 | 180 nnoremenu 20.360 &Edit.&Paste<Tab>"+gP "+gP |
181 cnoremenu &Edit.&Paste<Tab>"+gP <C-R>+ | |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14637
diff
changeset
|
182 if exists(':tlmenu') |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14637
diff
changeset
|
183 tlnoremenu &Edit.&Paste<Tab>"+gP <C-W>"+ |
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
14637
diff
changeset
|
184 endif |
719 | 185 exe 'vnoremenu <script> &Edit.&Paste<Tab>"+gP ' . paste#paste_cmd['v'] |
186 exe 'inoremenu <script> &Edit.&Paste<Tab>"+gP ' . paste#paste_cmd['i'] | |
7 | 187 nnoremenu 20.370 &Edit.Put\ &Before<Tab>[p [p |
188 inoremenu &Edit.Put\ &Before<Tab>[p <C-O>[p | |
189 nnoremenu 20.380 &Edit.Put\ &After<Tab>]p ]p | |
190 inoremenu &Edit.Put\ &After<Tab>]p <C-O>]p | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
191 if has("win32") |
7 | 192 vnoremenu 20.390 &Edit.&Delete<Tab>x x |
193 endif | |
194 noremenu <script> <silent> 20.400 &Edit.&Select\ All<Tab>ggVG :<C-U>call <SID>SelectAll()<CR> | |
195 inoremenu <script> <silent> 20.400 &Edit.&Select\ All<Tab>ggVG <C-O>:call <SID>SelectAll()<CR> | |
196 cnoremenu <script> <silent> 20.400 &Edit.&Select\ All<Tab>ggVG <C-U>call <SID>SelectAll()<CR> | |
197 | |
198 an 20.405 &Edit.-SEP2- <Nop> | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
199 if has("win32") || has("gui_gtk") || has("gui_kde") || has("gui_motif") |
7 | 200 an 20.410 &Edit.&Find\.\.\. :promptfind<CR> |
201 vunmenu &Edit.&Find\.\.\. | |
719 | 202 vnoremenu <silent> &Edit.&Find\.\.\. y:promptfind <C-R>=<SID>FixFText()<CR><CR> |
7 | 203 an 20.420 &Edit.Find\ and\ Rep&lace\.\.\. :promptrepl<CR> |
204 vunmenu &Edit.Find\ and\ Rep&lace\.\.\. | |
719 | 205 vnoremenu <silent> &Edit.Find\ and\ Rep&lace\.\.\. y:promptrepl <C-R>=<SID>FixFText()<CR><CR> |
7 | 206 else |
207 an 20.410 &Edit.&Find<Tab>/ / | |
208 an 20.420 &Edit.Find\ and\ Rep&lace<Tab>:%s :%s/ | |
209 vunmenu &Edit.Find\ and\ Rep&lace<Tab>:%s | |
210 vnoremenu &Edit.Find\ and\ Rep&lace<Tab>:s :s/ | |
211 endif | |
212 | |
213 an 20.425 &Edit.-SEP3- <Nop> | |
214 an 20.430 &Edit.Settings\ &Window :options<CR> | |
819 | 215 an 20.435 &Edit.Startup\ &Settings :call <SID>EditVimrc()<CR> |
216 | |
217 fun! s:EditVimrc() | |
218 if $MYVIMRC != '' | |
1659 | 219 let fname = $MYVIMRC |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
5968
diff
changeset
|
220 elseif has("win32") |
819 | 221 if $HOME != '' |
1659 | 222 let fname = $HOME . "/_vimrc" |
819 | 223 else |
1659 | 224 let fname = $VIM . "/_vimrc" |
819 | 225 endif |
226 elseif has("amiga") | |
227 let fname = "s:.vimrc" | |
228 else | |
1659 | 229 let fname = $HOME . "/.vimrc" |
819 | 230 endif |
1648 | 231 let fname = s:FnameEscape(fname) |
819 | 232 if &mod |
233 exe "split " . fname | |
234 else | |
235 exe "edit " . fname | |
236 endif | |
237 endfun | |
7 | 238 |
482 | 239 fun! s:FixFText() |
240 " Fix text in nameless register to be used with :promptfind. | |
719 | 241 return substitute(@", "[\r\n]", '\\n', 'g') |
482 | 242 endfun |
243 | |
7 | 244 " Edit/Global Settings |
245 an 20.440.100 &Edit.&Global\ Settings.Toggle\ Pattern\ &Highlight<Tab>:set\ hls! :set hls! hls?<CR> | |
11062 | 246 an 20.440.110 &Edit.&Global\ Settings.Toggle\ &Ignoring\ Case<Tab>:set\ ic! :set ic! ic?<CR> |
247 an 20.440.110 &Edit.&Global\ Settings.Toggle\ &Showing\ Matched\ Pairs<Tab>:set\ sm! :set sm! sm?<CR> | |
7 | 248 |
11062 | 249 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 1\ :set so=1<CR> |
250 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 2\ :set so=2<CR> | |
251 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 3\ :set so=3<CR> | |
252 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 4\ :set so=4<CR> | |
253 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 5\ :set so=5<CR> | |
254 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 7\ :set so=7<CR> | |
255 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 10\ :set so=10<CR> | |
256 an 20.440.120 &Edit.&Global\ Settings.&Context\ Lines.\ 100\ :set so=100<CR> | |
7 | 257 |
258 an 20.440.130.40 &Edit.&Global\ Settings.&Virtual\ Edit.Never :set ve=<CR> | |
259 an 20.440.130.50 &Edit.&Global\ Settings.&Virtual\ Edit.Block\ Selection :set ve=block<CR> | |
11062 | 260 an 20.440.130.60 &Edit.&Global\ Settings.&Virtual\ Edit.Insert\ Mode :set ve=insert<CR> |
7 | 261 an 20.440.130.70 &Edit.&Global\ Settings.&Virtual\ Edit.Block\ and\ Insert :set ve=block,insert<CR> |
262 an 20.440.130.80 &Edit.&Global\ Settings.&Virtual\ Edit.Always :set ve=all<CR> | |
263 an 20.440.140 &Edit.&Global\ Settings.Toggle\ Insert\ &Mode<Tab>:set\ im! :set im!<CR> | |
11062 | 264 an 20.440.145 &Edit.&Global\ Settings.Toggle\ Vi\ C&ompatibility<Tab>:set\ cp! :set cp!<CR> |
7 | 265 an <silent> 20.440.150 &Edit.&Global\ Settings.Search\ &Path\.\.\. :call <SID>SearchP()<CR> |
266 an <silent> 20.440.160 &Edit.&Global\ Settings.Ta&g\ Files\.\.\. :call <SID>TagFiles()<CR> | |
267 " | |
268 " GUI options | |
269 an 20.440.300 &Edit.&Global\ Settings.-SEP1- <Nop> | |
270 an <silent> 20.440.310 &Edit.&Global\ Settings.Toggle\ &Toolbar :call <SID>ToggleGuiOption("T")<CR> | |
271 an <silent> 20.440.320 &Edit.&Global\ Settings.Toggle\ &Bottom\ Scrollbar :call <SID>ToggleGuiOption("b")<CR> | |
272 an <silent> 20.440.330 &Edit.&Global\ Settings.Toggle\ &Left\ Scrollbar :call <SID>ToggleGuiOption("l")<CR> | |
273 an <silent> 20.440.340 &Edit.&Global\ Settings.Toggle\ &Right\ Scrollbar :call <SID>ToggleGuiOption("r")<CR> | |
274 | |
275 fun! s:SearchP() | |
276 if !exists("g:menutrans_path_dialog") | |
277 let g:menutrans_path_dialog = "Enter search path for files.\nSeparate directory names with a comma." | |
278 endif | |
279 let n = inputdialog(g:menutrans_path_dialog, substitute(&path, '\\ ', ' ', 'g')) | |
280 if n != "" | |
281 let &path = substitute(n, ' ', '\\ ', 'g') | |
282 endif | |
283 endfun | |
284 | |
285 fun! s:TagFiles() | |
286 if !exists("g:menutrans_tags_dialog") | |
287 let g:menutrans_tags_dialog = "Enter names of tag files.\nSeparate the names with a comma." | |
288 endif | |
289 let n = inputdialog(g:menutrans_tags_dialog, substitute(&tags, '\\ ', ' ', 'g')) | |
290 if n != "" | |
291 let &tags = substitute(n, ' ', '\\ ', 'g') | |
292 endif | |
293 endfun | |
294 | |
295 fun! s:ToggleGuiOption(option) | |
296 " If a:option is already set in guioptions, then we want to remove it | |
297 if match(&guioptions, "\\C" . a:option) > -1 | |
298 exec "set go-=" . a:option | |
299 else | |
300 exec "set go+=" . a:option | |
301 endif | |
302 endfun | |
303 | |
304 " Edit/File Settings | |
305 | |
306 " Boolean options | |
307 an 20.440.100 &Edit.F&ile\ Settings.Toggle\ Line\ &Numbering<Tab>:set\ nu! :set nu! nu?<CR> | |
11062 | 308 an 20.440.105 &Edit.F&ile\ Settings.Toggle\ Relati&ve\ Line\ Numbering<Tab>:set\ rnu! :set rnu! rnu?<CR> |
7 | 309 an 20.440.110 &Edit.F&ile\ Settings.Toggle\ &List\ Mode<Tab>:set\ list! :set list! list?<CR> |
11062 | 310 an 20.440.120 &Edit.F&ile\ Settings.Toggle\ Line\ &Wrapping<Tab>:set\ wrap! :set wrap! wrap?<CR> |
311 an 20.440.130 &Edit.F&ile\ Settings.Toggle\ W&rapping\ at\ Word<Tab>:set\ lbr! :set lbr! lbr?<CR> | |
312 an 20.440.160 &Edit.F&ile\ Settings.Toggle\ Tab\ &Expanding<Tab>:set\ et! :set et! et?<CR> | |
313 an 20.440.170 &Edit.F&ile\ Settings.Toggle\ &Auto\ Indenting<Tab>:set\ ai! :set ai! ai?<CR> | |
314 an 20.440.180 &Edit.F&ile\ Settings.Toggle\ &C-Style\ Indenting<Tab>:set\ cin! :set cin! cin?<CR> | |
7 | 315 |
316 " other options | |
317 an 20.440.600 &Edit.F&ile\ Settings.-SEP2- <Nop> | |
318 an 20.440.610.20 &Edit.F&ile\ Settings.&Shiftwidth.2 :set sw=2 sw?<CR> | |
319 an 20.440.610.30 &Edit.F&ile\ Settings.&Shiftwidth.3 :set sw=3 sw?<CR> | |
320 an 20.440.610.40 &Edit.F&ile\ Settings.&Shiftwidth.4 :set sw=4 sw?<CR> | |
321 an 20.440.610.50 &Edit.F&ile\ Settings.&Shiftwidth.5 :set sw=5 sw?<CR> | |
322 an 20.440.610.60 &Edit.F&ile\ Settings.&Shiftwidth.6 :set sw=6 sw?<CR> | |
323 an 20.440.610.80 &Edit.F&ile\ Settings.&Shiftwidth.8 :set sw=8 sw?<CR> | |
324 | |
325 an 20.440.620.20 &Edit.F&ile\ Settings.Soft\ &Tabstop.2 :set sts=2 sts?<CR> | |
326 an 20.440.620.30 &Edit.F&ile\ Settings.Soft\ &Tabstop.3 :set sts=3 sts?<CR> | |
327 an 20.440.620.40 &Edit.F&ile\ Settings.Soft\ &Tabstop.4 :set sts=4 sts?<CR> | |
328 an 20.440.620.50 &Edit.F&ile\ Settings.Soft\ &Tabstop.5 :set sts=5 sts?<CR> | |
329 an 20.440.620.60 &Edit.F&ile\ Settings.Soft\ &Tabstop.6 :set sts=6 sts?<CR> | |
330 an 20.440.620.80 &Edit.F&ile\ Settings.Soft\ &Tabstop.8 :set sts=8 sts?<CR> | |
331 | |
332 an <silent> 20.440.630 &Edit.F&ile\ Settings.Te&xt\ Width\.\.\. :call <SID>TextWidth()<CR> | |
333 an <silent> 20.440.640 &Edit.F&ile\ Settings.&File\ Format\.\.\. :call <SID>FileFormat()<CR> | |
334 fun! s:TextWidth() | |
335 if !exists("g:menutrans_textwidth_dialog") | |
336 let g:menutrans_textwidth_dialog = "Enter new text width (0 to disable formatting): " | |
337 endif | |
338 let n = inputdialog(g:menutrans_textwidth_dialog, &tw) | |
339 if n != "" | |
4437 | 340 " Remove leading zeros to avoid it being used as an octal number. |
341 " But keep a zero by itself. | |
342 let tw = substitute(n, "^0*", "", "") | |
11062 | 343 let &tw = tw == '' ? 0 : tw |
7 | 344 endif |
345 endfun | |
346 | |
347 fun! s:FileFormat() | |
348 if !exists("g:menutrans_fileformat_dialog") | |
349 let g:menutrans_fileformat_dialog = "Select format for writing the file" | |
350 endif | |
351 if !exists("g:menutrans_fileformat_choices") | |
352 let g:menutrans_fileformat_choices = "&Unix\n&Dos\n&Mac\n&Cancel" | |
353 endif | |
354 if &ff == "dos" | |
355 let def = 2 | |
356 elseif &ff == "mac" | |
357 let def = 3 | |
358 else | |
359 let def = 1 | |
360 endif | |
361 let n = confirm(g:menutrans_fileformat_dialog, g:menutrans_fileformat_choices, def, "Question") | |
362 if n == 1 | |
363 set ff=unix | |
364 elseif n == 2 | |
365 set ff=dos | |
366 elseif n == 3 | |
367 set ff=mac | |
368 endif | |
369 endfun | |
370 | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
371 let s:did_setup_color_schemes = 0 |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2293
diff
changeset
|
372 |
7 | 373 " Setup the Edit.Color Scheme submenu |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
374 func s:SetupColorSchemes() abort |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
375 if s:did_setup_color_schemes |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
376 return |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
377 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
378 let s:did_setup_color_schemes = 1 |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2293
diff
changeset
|
379 |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
380 let n = globpath(&runtimepath, "colors/*.vim", 1, 1) |
18016 | 381 let n += globpath(&packpath, "pack/*/start/*/colors/*.vim", 1, 1) |
382 let n += globpath(&packpath, "pack/*/opt/*/colors/*.vim", 1, 1) | |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2293
diff
changeset
|
383 |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
384 " Ignore case for VMS and windows, sort on name |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
385 let names = sort(map(n, 'substitute(v:val, "\\c.*[/\\\\:\\]]\\([^/\\\\:]*\\)\\.vim", "\\1", "")'), 1) |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2293
diff
changeset
|
386 |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
387 " define all the submenu entries |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
388 let idx = 100 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
389 for name in names |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
390 exe "an 20.450." . idx . ' &Edit.C&olor\ Scheme.' . name . " :colors " . name . "<CR>" |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
391 let idx = idx + 10 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
392 endfor |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
393 silent! aunmenu &Edit.Show\ C&olor\ Schemes\ in\ Menu |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
394 endfun |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
395 if exists("do_no_lazyload_menus") |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
396 call s:SetupColorSchemes() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
397 else |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
398 an <silent> 20.450 &Edit.Show\ C&olor\ Schemes\ in\ Menu :call <SID>SetupColorSchemes()<CR> |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
399 endif |
2325
f177a6431514
Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
Bram Moolenaar <bram@vim.org>
parents:
2293
diff
changeset
|
400 |
7 | 401 |
402 " Setup the Edit.Keymap submenu | |
403 if has("keymap") | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
404 let s:did_setup_keymaps = 0 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
405 |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
406 func s:SetupKeymaps() abort |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
407 if s:did_setup_keymaps |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
408 return |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
409 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
410 let s:did_setup_keymaps = 1 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
411 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
412 let n = globpath(&runtimepath, "keymap/*.vim", 1, 1) |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
413 if !empty(n) |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
414 let idx = 100 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
415 an 20.460.90 &Edit.&Keymap.None :set keymap=<CR> |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
416 for name in n |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
417 " Ignore case for VMS and windows |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
418 let name = substitute(name, '\c.*[/\\:\]]\([^/\\:_]*\)\(_[0-9a-zA-Z-]*\)\=\.vim', '\1', '') |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
419 exe "an 20.460." . idx . ' &Edit.&Keymap.' . name . " :set keymap=" . name . "<CR>" |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
420 let idx = idx + 10 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
421 endfor |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
422 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
423 silent! aunmenu &Edit.Show\ &Keymaps\ in\ Menu |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
424 endfun |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
425 if exists("do_no_lazyload_menus") |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
426 call s:SetupKeymaps() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
427 else |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
428 an <silent> 20.460 &Edit.Show\ &Keymaps\ in\ Menu :call <SID>SetupKeymaps()<CR> |
7 | 429 endif |
430 endif | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
431 if has("win32") || has("gui_motif") || has("gui_gtk") || has("gui_kde") || has("gui_photon") || has("gui_mac") |
7 | 432 an 20.470 &Edit.Select\ Fo&nt\.\.\. :set guifont=*<CR> |
433 endif | |
434 | |
435 " Programming menu | |
436 if !exists("g:ctags_command") | |
437 if has("vms") | |
1054 | 438 let g:ctags_command = "mc vim:ctags *.*" |
7 | 439 else |
440 let g:ctags_command = "ctags -R ." | |
441 endif | |
442 endif | |
443 | |
11062 | 444 an 40.300 &Tools.&Jump\ to\ This\ Tag<Tab>g^] g<C-]> |
445 vunmenu &Tools.&Jump\ to\ This\ Tag<Tab>g^] | |
446 vnoremenu &Tools.&Jump\ to\ This\ Tag<Tab>g^] g<C-]> | |
447 an 40.310 &Tools.Jump\ &Back<Tab>^T <C-T> | |
7 | 448 an 40.320 &Tools.Build\ &Tags\ File :exe "!" . g:ctags_command<CR> |
449 | |
314 | 450 if has("folding") || has("spell") |
451 an 40.330 &Tools.-SEP1- <Nop> | |
452 endif | |
453 | |
319 | 454 " Tools.Spelling Menu |
314 | 455 if has("spell") |
456 an 40.335.110 &Tools.&Spelling.&Spell\ Check\ On :set spell<CR> | |
457 an 40.335.120 &Tools.&Spelling.Spell\ Check\ &Off :set nospell<CR> | |
11062 | 458 an 40.335.130 &Tools.&Spelling.To\ &Next\ Error<Tab>]s ]s |
459 an 40.335.130 &Tools.&Spelling.To\ &Previous\ Error<Tab>[s [s | |
714 | 460 an 40.335.140 &Tools.&Spelling.Suggest\ &Corrections<Tab>z= z= |
11062 | 461 an 40.335.150 &Tools.&Spelling.&Repeat\ Correction<Tab>:spellrepall :spellrepall<CR> |
314 | 462 an 40.335.200 &Tools.&Spelling.-SEP1- <Nop> |
11062 | 463 an 40.335.210 &Tools.&Spelling.Set\ Language\ to\ "en" :set spl=en spell<CR> |
464 an 40.335.220 &Tools.&Spelling.Set\ Language\ to\ "en_au" :set spl=en_au spell<CR> | |
465 an 40.335.230 &Tools.&Spelling.Set\ Language\ to\ "en_ca" :set spl=en_ca spell<CR> | |
466 an 40.335.240 &Tools.&Spelling.Set\ Language\ to\ "en_gb" :set spl=en_gb spell<CR> | |
467 an 40.335.250 &Tools.&Spelling.Set\ Language\ to\ "en_nz" :set spl=en_nz spell<CR> | |
468 an 40.335.260 &Tools.&Spelling.Set\ Language\ to\ "en_us" :set spl=en_us spell<CR> | |
314 | 469 an <silent> 40.335.270 &Tools.&Spelling.&Find\ More\ Languages :call <SID>SpellLang()<CR> |
470 | |
20856 | 471 let s:undo_spelllang = ['aun &Tools.&Spelling.&Find\ More\ Languages'] |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
472 func s:SpellLang() |
20856 | 473 for cmd in s:undo_spelllang |
452 | 474 exe "silent! " . cmd |
475 endfor | |
20856 | 476 let s:undo_spelllang = [] |
452 | 477 |
314 | 478 if &enc == "iso-8859-15" |
479 let enc = "latin1" | |
480 else | |
481 let enc = &enc | |
482 endif | |
452 | 483 |
3879 | 484 if !exists("g:menutrans_set_lang_to") |
11062 | 485 let g:menutrans_set_lang_to = 'Set Language to' |
3879 | 486 endif |
487 | |
314 | 488 let found = 0 |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
489 let s = globpath(&runtimepath, "spell/*." . enc . ".spl", 1, 1) |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
490 if !empty(s) |
314 | 491 let n = 300 |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
492 for f in s |
314 | 493 let nm = substitute(f, '.*spell[/\\]\(..\)\.[^/\\]*\.spl', '\1', "") |
452 | 494 if nm != "en" && nm !~ '/' |
3879 | 495 let _nm = nm |
314 | 496 let found += 1 |
3879 | 497 let menuname = '&Tools.&Spelling.' . escape(g:menutrans_set_lang_to, "\\. \t|") . '\ "' . nm . '"' |
452 | 498 exe 'an 40.335.' . n . ' ' . menuname . ' :set spl=' . nm . ' spell<CR>' |
20856 | 499 let s:undo_spelllang += ['aun ' . menuname] |
314 | 500 endif |
501 let n += 10 | |
502 endfor | |
503 endif | |
504 if found == 0 | |
505 echomsg "Could not find other spell files" | |
506 elseif found == 1 | |
3879 | 507 echomsg "Found spell file " . _nm |
314 | 508 else |
509 echomsg "Found " . found . " more spell files" | |
510 endif | |
452 | 511 " Need to redo this when 'encoding' is changed. |
512 augroup spellmenu | |
513 au! EncodingChanged * call <SID>SpellLang() | |
514 augroup END | |
314 | 515 endfun |
516 | |
517 endif | |
518 | |
7 | 519 " Tools.Fold Menu |
520 if has("folding") | |
521 " open close folds | |
11062 | 522 an 40.340.110 &Tools.&Folding.&Enable/Disable\ Folds<Tab>zi zi |
7 | 523 an 40.340.120 &Tools.&Folding.&View\ Cursor\ Line<Tab>zv zv |
11062 | 524 an 40.340.120 &Tools.&Folding.Vie&w\ Cursor\ Line\ Only<Tab>zMzx zMzx |
525 inoremenu 40.340.120 &Tools.&Folding.Vie&w\ Cursor\ Line\ Only<Tab>zMzx <C-O>zM<C-O>zx | |
526 an 40.340.130 &Tools.&Folding.C&lose\ More\ Folds<Tab>zm zm | |
527 an 40.340.140 &Tools.&Folding.&Close\ All\ Folds<Tab>zM zM | |
528 an 40.340.150 &Tools.&Folding.O&pen\ More\ Folds<Tab>zr zr | |
10895 | 529 an 40.340.160 &Tools.&Folding.&Open\ All\ Folds<Tab>zR zR |
7 | 530 " fold method |
531 an 40.340.200 &Tools.&Folding.-SEP1- <Nop> | |
532 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.M&anual :set fdm=manual<CR> | |
533 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.I&ndent :set fdm=indent<CR> | |
534 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.E&xpression :set fdm=expr<CR> | |
535 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.S&yntax :set fdm=syntax<CR> | |
536 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.&Diff :set fdm=diff<CR> | |
537 an 40.340.210 &Tools.&Folding.Fold\ Met&hod.Ma&rker :set fdm=marker<CR> | |
538 " create and delete folds | |
539 vnoremenu 40.340.220 &Tools.&Folding.Create\ &Fold<Tab>zf zf | |
540 an 40.340.230 &Tools.&Folding.&Delete\ Fold<Tab>zd zd | |
541 an 40.340.240 &Tools.&Folding.Delete\ &All\ Folds<Tab>zD zD | |
542 " moving around in folds | |
543 an 40.340.300 &Tools.&Folding.-SEP2- <Nop> | |
11062 | 544 an 40.340.310.10 &Tools.&Folding.Fold\ Col&umn\ Width.\ &0\ :set fdc=0<CR> |
545 an 40.340.310.20 &Tools.&Folding.Fold\ Col&umn\ Width.\ &2\ :set fdc=2<CR> | |
546 an 40.340.310.30 &Tools.&Folding.Fold\ Col&umn\ Width.\ &3\ :set fdc=3<CR> | |
547 an 40.340.310.40 &Tools.&Folding.Fold\ Col&umn\ Width.\ &4\ :set fdc=4<CR> | |
548 an 40.340.310.50 &Tools.&Folding.Fold\ Col&umn\ Width.\ &5\ :set fdc=5<CR> | |
549 an 40.340.310.60 &Tools.&Folding.Fold\ Col&umn\ Width.\ &6\ :set fdc=6<CR> | |
550 an 40.340.310.70 &Tools.&Folding.Fold\ Col&umn\ Width.\ &7\ :set fdc=7<CR> | |
551 an 40.340.310.80 &Tools.&Folding.Fold\ Col&umn\ Width.\ &8\ :set fdc=8<CR> | |
7 | 552 endif " has folding |
553 | |
554 if has("diff") | |
555 an 40.350.100 &Tools.&Diff.&Update :diffupdate<CR> | |
556 an 40.350.110 &Tools.&Diff.&Get\ Block :diffget<CR> | |
557 vunmenu &Tools.&Diff.&Get\ Block | |
558 vnoremenu &Tools.&Diff.&Get\ Block :diffget<CR> | |
559 an 40.350.120 &Tools.&Diff.&Put\ Block :diffput<CR> | |
560 vunmenu &Tools.&Diff.&Put\ Block | |
561 vnoremenu &Tools.&Diff.&Put\ Block :diffput<CR> | |
562 endif | |
563 | |
564 an 40.358 &Tools.-SEP2- <Nop> | |
565 an 40.360 &Tools.&Make<Tab>:make :make<CR> | |
566 an 40.370 &Tools.&List\ Errors<Tab>:cl :cl<CR> | |
567 an 40.380 &Tools.L&ist\ Messages<Tab>:cl! :cl!<CR> | |
568 an 40.390 &Tools.&Next\ Error<Tab>:cn :cn<CR> | |
569 an 40.400 &Tools.&Previous\ Error<Tab>:cp :cp<CR> | |
570 an 40.410 &Tools.&Older\ List<Tab>:cold :colder<CR> | |
571 an 40.420 &Tools.N&ewer\ List<Tab>:cnew :cnewer<CR> | |
572 an 40.430.50 &Tools.Error\ &Window.&Update<Tab>:cwin :cwin<CR> | |
573 an 40.430.60 &Tools.Error\ &Window.&Open<Tab>:copen :copen<CR> | |
574 an 40.430.70 &Tools.Error\ &Window.&Close<Tab>:cclose :cclose<CR> | |
575 | |
576 an 40.520 &Tools.-SEP3- <Nop> | |
577 an <silent> 40.530 &Tools.&Convert\ to\ HEX<Tab>:%!xxd | |
578 \ :call <SID>XxdConv()<CR> | |
11062 | 579 an <silent> 40.540 &Tools.Conve&rt\ Back<Tab>:%!xxd\ -r |
7 | 580 \ :call <SID>XxdBack()<CR> |
581 | |
582 " Use a function to do the conversion, so that it also works with 'insertmode' | |
583 " set. | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
584 func s:XxdConv() |
7 | 585 let mod = &mod |
586 if has("vms") | |
587 %!mc vim:xxd | |
588 else | |
589 call s:XxdFind() | |
18594 | 590 exe '%!' . g:xxdprogram |
7 | 591 endif |
592 if getline(1) =~ "^0000000:" " only if it worked | |
593 set ft=xxd | |
594 endif | |
595 let &mod = mod | |
596 endfun | |
597 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
598 func s:XxdBack() |
7 | 599 let mod = &mod |
600 if has("vms") | |
601 %!mc vim:xxd -r | |
602 else | |
603 call s:XxdFind() | |
18594 | 604 exe '%!' . g:xxdprogram . ' -r' |
7 | 605 endif |
606 set ft= | |
607 doautocmd filetypedetect BufReadPost | |
608 let &mod = mod | |
609 endfun | |
610 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
611 func s:XxdFind() |
7 | 612 if !exists("g:xxdprogram") |
613 " On the PC xxd may not be in the path but in the install directory | |
9555
9560a5b782ee
commit https://github.com/vim/vim/commit/42ebd066422d73cdb7bda6a1dc828a3dd022dec8
Christian Brabandt <cb@256bit.org>
parents:
5968
diff
changeset
|
614 if has("win32") && !executable("xxd") |
7 | 615 let g:xxdprogram = $VIMRUNTIME . (&shellslash ? '/' : '\') . "xxd.exe" |
18594 | 616 if g:xxdprogram =~ ' ' |
617 let g:xxdprogram = '"' .. g:xxdprogram .. '"' | |
618 endif | |
7 | 619 else |
620 let g:xxdprogram = "xxd" | |
621 endif | |
622 endif | |
623 endfun | |
624 | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
625 let s:did_setup_compilers = 0 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
626 |
7 | 627 " Setup the Tools.Compiler submenu |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
628 func s:SetupCompilers() abort |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
629 if s:did_setup_compilers |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
630 return |
7 | 631 endif |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
632 let s:did_setup_compilers = 1 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
633 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
634 let n = globpath(&runtimepath, "compiler/*.vim", 1, 1) |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
635 let idx = 100 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
636 for name in n |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
637 " Ignore case for VMS and windows |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
638 let name = substitute(name, '\c.*[/\\:\]]\([^/\\:]*\)\.vim', '\1', '') |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
639 exe "an 30.440." . idx . ' &Tools.Se&t\ Compiler.' . name . " :compiler " . name . "<CR>" |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
640 let idx = idx + 10 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
641 endfor |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
642 silent! aunmenu &Tools.Show\ Compiler\ Se&ttings\ in\ Menu |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
643 endfun |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
644 if exists("do_no_lazyload_menus") |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
645 call s:SetupCompilers() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
646 else |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
647 an <silent> 30.440 &Tools.Show\ Compiler\ Se&ttings\ in\ Menu :call <SID>SetupCompilers()<CR> |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
648 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
649 |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
650 " Load ColorScheme, Compiler Setting and Keymap menus when idle. |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
651 if !exists("do_no_lazyload_menus") |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
652 func s:SetupLazyloadMenus() |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
653 call s:SetupColorSchemes() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
654 call s:SetupCompilers() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
655 if has("keymap") |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
656 call s:SetupKeymaps() |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
657 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
658 endfunc |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
659 augroup SetupLazyloadMenus |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
660 au! |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
661 au CursorHold,CursorHoldI * call <SID>SetupLazyloadMenus() | au! SetupLazyloadMenus |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
662 augroup END |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
663 endif |
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
664 |
7 | 665 |
666 if !exists("no_buffers_menu") | |
667 | |
668 " Buffer list menu -- Setup functions & actions | |
669 | |
670 " wait with building the menu until after loading 'session' files. Makes | |
671 " startup faster. | |
672 let s:bmenu_wait = 1 | |
673 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
674 " Dictionary of buffer number to name. This helps prevent problems where a |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
675 " buffer as renamed and we didn't keep track of that. |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
676 let s:bmenu_items = {} |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
677 |
7 | 678 if !exists("bmenu_priority") |
679 let bmenu_priority = 60 | |
680 endif | |
681 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
682 " invoked from a BufCreate or BufFilePost autocommand |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
683 func s:BMAdd() |
7 | 684 if s:bmenu_wait == 0 |
685 " when adding too many buffers, redraw in short format | |
686 if s:bmenu_count == &menuitems && s:bmenu_short == 0 | |
687 call s:BMShow() | |
688 else | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
689 let name = expand("<afile>") |
19844
d53e8428a79a
patch 8.2.0478: new buffers are not added to the Buffers menu
Bram Moolenaar <Bram@vim.org>
parents:
19713
diff
changeset
|
690 let num = expand("<abuf>") + 0 " add zero to convert to a number type |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
691 if s:BMCanAdd(name, num) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
692 call <SID>BMFilename(name, num) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
693 let s:bmenu_count += 1 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
694 endif |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
695 endif |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
696 endif |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
697 endfunc |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
698 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
699 " invoked from a BufDelete or BufFilePre autocommand |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
700 func s:BMRemove() |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
701 if s:bmenu_wait == 0 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
702 let bufnum = expand("<abuf>") |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
703 if s:bmenu_items->has_key(bufnum) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
704 let menu_name = s:bmenu_items[bufnum] |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
705 exe 'silent! aun &Buffers.' . menu_name |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
706 let s:bmenu_count = s:bmenu_count - 1 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
707 unlet s:bmenu_items[bufnum] |
7 | 708 endif |
709 endif | |
710 endfunc | |
711 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
712 " Return non-zero if buffer with number "name" / "num" is useful to add in the |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
713 " buffer menu. |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
714 func s:BMCanAdd(name, num) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
715 " no directory or unlisted buffer |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
716 if isdirectory(a:name) || !buflisted(a:num) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
717 return 0 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
718 endif |
7 | 719 |
26708 | 720 " no name with control characters |
721 if a:name =~ '[\x01-\x1f]' | |
722 return 0 | |
723 endif | |
724 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
725 " no special buffer, such as terminal or popup |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
726 let buftype = getbufvar(a:num, '&buftype') |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
727 if buftype != '' && buftype != 'nofile' && buftype != 'nowrite' |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
728 return 0 |
7 | 729 endif |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
730 |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
731 " only existing buffers |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
732 return bufexists(a:num) |
7 | 733 endfunc |
734 | |
735 " Create the buffer menu (delete an existing one first). | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
736 func s:BMShow(...) |
7 | 737 let s:bmenu_wait = 1 |
738 let s:bmenu_short = 1 | |
739 let s:bmenu_count = 0 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
740 let s:bmenu_items = {} |
7 | 741 " |
742 " get new priority, if exists | |
743 if a:0 == 1 | |
744 let g:bmenu_priority = a:1 | |
745 endif | |
746 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
747 " Remove old menu, if it exists; keep one entry to avoid a torn off menu to |
18860
ec92ccff5c8b
patch 8.1.2416: loading menus sets v:errmsg
Bram Moolenaar <Bram@vim.org>
parents:
18594
diff
changeset
|
748 " disappear. Use try/catch to avoid setting v:errmsg |
ec92ccff5c8b
patch 8.1.2416: loading menus sets v:errmsg
Bram Moolenaar <Bram@vim.org>
parents:
18594
diff
changeset
|
749 try | unmenu &Buffers | catch | endtry |
7 | 750 exe 'noremenu ' . g:bmenu_priority . ".1 &Buffers.Dummy l" |
18860
ec92ccff5c8b
patch 8.1.2416: loading menus sets v:errmsg
Bram Moolenaar <Bram@vim.org>
parents:
18594
diff
changeset
|
751 try | unmenu! &Buffers | catch | endtry |
7 | 752 |
753 " create new menu; set 'cpo' to include the <CR> | |
754 let cpo_save = &cpo | |
755 set cpo&vim | |
756 exe 'an <silent> ' . g:bmenu_priority . ".2 &Buffers.&Refresh\\ menu :call <SID>BMShow()<CR>" | |
757 exe 'an ' . g:bmenu_priority . ".4 &Buffers.&Delete :confirm bd<CR>" | |
758 exe 'an ' . g:bmenu_priority . ".6 &Buffers.&Alternate :confirm b #<CR>" | |
759 exe 'an ' . g:bmenu_priority . ".7 &Buffers.&Next :confirm bnext<CR>" | |
760 exe 'an ' . g:bmenu_priority . ".8 &Buffers.&Previous :confirm bprev<CR>" | |
761 exe 'an ' . g:bmenu_priority . ".9 &Buffers.-SEP- :" | |
762 let &cpo = cpo_save | |
763 unmenu &Buffers.Dummy | |
764 | |
765 " figure out how many buffers there are | |
766 let buf = 1 | |
767 while buf <= bufnr('$') | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
768 if s:BMCanAdd(bufname(buf), buf) |
7 | 769 let s:bmenu_count = s:bmenu_count + 1 |
770 endif | |
771 let buf = buf + 1 | |
772 endwhile | |
773 if s:bmenu_count <= &menuitems | |
774 let s:bmenu_short = 0 | |
775 endif | |
776 | |
777 " iterate through buffer list, adding each buffer to the menu: | |
778 let buf = 1 | |
779 while buf <= bufnr('$') | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
780 let name = bufname(buf) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
781 if s:BMCanAdd(name, buf) |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
782 call <SID>BMFilename(name, buf) |
7 | 783 endif |
784 let buf = buf + 1 | |
785 endwhile | |
786 let s:bmenu_wait = 0 | |
787 aug buffer_list | |
788 au! | |
789 au BufCreate,BufFilePost * call <SID>BMAdd() | |
790 au BufDelete,BufFilePre * call <SID>BMRemove() | |
791 aug END | |
792 endfunc | |
793 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
794 func s:BMHash(name) |
7 | 795 " Make name all upper case, so that chars are between 32 and 96 |
796 let nm = substitute(a:name, ".*", '\U\0', "") | |
797 if has("ebcdic") | |
798 " HACK: Replace all non alphabetics with 'Z' | |
799 " Just to make it work for now. | |
800 let nm = substitute(nm, "[^A-Z]", 'Z', "g") | |
801 let sp = char2nr('A') - 1 | |
802 else | |
803 let sp = char2nr(' ') | |
804 endif | |
805 " convert first six chars into a number for sorting: | |
806 return (char2nr(nm[0]) - sp) * 0x800000 + (char2nr(nm[1]) - sp) * 0x20000 + (char2nr(nm[2]) - sp) * 0x1000 + (char2nr(nm[3]) - sp) * 0x80 + (char2nr(nm[4]) - sp) * 0x20 + (char2nr(nm[5]) - sp) | |
807 endfunc | |
808 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
809 func s:BMHash2(name) |
7 | 810 let nm = substitute(a:name, ".", '\L\0', "") |
811 " Not exactly right for EBCDIC... | |
812 if nm[0] < 'a' || nm[0] > 'z' | |
813 return '&others.' | |
814 elseif nm[0] <= 'd' | |
815 return '&abcd.' | |
816 elseif nm[0] <= 'h' | |
817 return '&efgh.' | |
818 elseif nm[0] <= 'l' | |
819 return '&ijkl.' | |
820 elseif nm[0] <= 'p' | |
821 return '&mnop.' | |
822 elseif nm[0] <= 't' | |
823 return '&qrst.' | |
824 else | |
825 return '&u-z.' | |
826 endif | |
827 endfunc | |
828 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
829 " Insert a buffer name into the buffer menu. |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
830 func s:BMFilename(name, num) |
7 | 831 let munge = <SID>BMMunge(a:name, a:num) |
832 let hash = <SID>BMHash(munge) | |
833 if s:bmenu_short == 0 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
834 let s:bmenu_items[a:num] = munge |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
835 let cmd = 'an ' . g:bmenu_priority . '.' . hash . ' &Buffers.' . munge |
7 | 836 else |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
837 let menu_name = <SID>BMHash2(munge) . munge |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
838 let s:bmenu_items[a:num] = menu_name |
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
839 let cmd = 'an ' . g:bmenu_priority . '.' . hash . '.' . hash . ' &Buffers.' . menu_name |
7 | 840 endif |
841 " set 'cpo' to include the <CR> | |
842 let cpo_save = &cpo | |
843 set cpo&vim | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
844 exe cmd . ' :confirm b' . a:num . '<CR>' |
7 | 845 let &cpo = cpo_save |
846 endfunc | |
847 | |
848 " Truncate a long path to fit it in a menu item. | |
849 if !exists("g:bmenu_max_pathlen") | |
850 let g:bmenu_max_pathlen = 35 | |
851 endif | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
852 func s:BMTruncName(fname) |
7 | 853 let name = a:fname |
854 if g:bmenu_max_pathlen < 5 | |
855 let name = "" | |
856 else | |
857 let len = strlen(name) | |
858 if len > g:bmenu_max_pathlen | |
859 let amountl = (g:bmenu_max_pathlen / 2) - 2 | |
860 let amountr = g:bmenu_max_pathlen - amountl - 3 | |
861 let pattern = '^\(.\{,' . amountl . '}\).\{-}\(.\{,' . amountr . '}\)$' | |
862 let left = substitute(name, pattern, '\1', '') | |
863 let right = substitute(name, pattern, '\2', '') | |
864 if strlen(left) + strlen(right) < len | |
865 let name = left . '...' . right | |
866 endif | |
867 endif | |
868 endif | |
869 return name | |
870 endfunc | |
871 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
872 func s:BMMunge(fname, bnum) |
7 | 873 let name = a:fname |
874 if name == '' | |
875 if !exists("g:menutrans_no_file") | |
14249
4543777545a3
Updated runtime and language files.
Christian Brabandt <cb@256bit.org>
parents:
13960
diff
changeset
|
876 let g:menutrans_no_file = "[No Name]" |
7 | 877 endif |
878 let name = g:menutrans_no_file | |
879 else | |
880 let name = fnamemodify(name, ':p:~') | |
881 endif | |
882 " detach file name and separate it out: | |
883 let name2 = fnamemodify(name, ':t') | |
884 if a:bnum >= 0 | |
885 let name2 = name2 . ' (' . a:bnum . ')' | |
886 endif | |
887 let name = name2 . "\t" . <SID>BMTruncName(fnamemodify(name,':h')) | |
888 let name = escape(name, "\\. \t|") | |
889 let name = substitute(name, "&", "&&", "g") | |
890 let name = substitute(name, "\n", "^@", "g") | |
891 return name | |
892 endfunc | |
893 | |
894 " When just starting Vim, load the buffer menu later | |
895 if has("vim_starting") | |
896 augroup LoadBufferMenu | |
897 au! VimEnter * if !exists("no_buffers_menu") | call <SID>BMShow() | endif | |
898 au VimEnter * au! LoadBufferMenu | |
899 augroup END | |
900 else | |
901 call <SID>BMShow() | |
902 endif | |
903 | |
904 endif " !exists("no_buffers_menu") | |
905 | |
906 " Window menu | |
907 an 70.300 &Window.&New<Tab>^Wn <C-W>n | |
908 an 70.310 &Window.S&plit<Tab>^Ws <C-W>s | |
909 an 70.320 &Window.Sp&lit\ To\ #<Tab>^W^^ <C-W><C-^> | |
910 an 70.330 &Window.Split\ &Vertically<Tab>^Wv <C-W>v | |
15729 | 911 an <silent> 70.332 &Window.Split\ File\ E&xplorer :call MenuExplOpen()<CR> |
912 if !exists("*MenuExplOpen") | |
913 fun MenuExplOpen() | |
914 if @% == "" | |
915 20vsp . | |
916 else | |
917 exe "20vsp " . s:FnameEscape(expand("%:p:h")) | |
918 endif | |
919 endfun | |
7 | 920 endif |
921 an 70.335 &Window.-SEP1- <Nop> | |
922 an 70.340 &Window.&Close<Tab>^Wc :confirm close<CR> | |
923 an 70.345 &Window.Close\ &Other(s)<Tab>^Wo :confirm only<CR> | |
924 an 70.350 &Window.-SEP2- <Nop> | |
925 an 70.355 &Window.Move\ &To.&Top<Tab>^WK <C-W>K | |
926 an 70.355 &Window.Move\ &To.&Bottom<Tab>^WJ <C-W>J | |
11062 | 927 an 70.355 &Window.Move\ &To.&Left\ Side<Tab>^WH <C-W>H |
928 an 70.355 &Window.Move\ &To.&Right\ Side<Tab>^WL <C-W>L | |
7 | 929 an 70.360 &Window.Rotate\ &Up<Tab>^WR <C-W>R |
930 an 70.362 &Window.Rotate\ &Down<Tab>^Wr <C-W>r | |
931 an 70.365 &Window.-SEP3- <Nop> | |
932 an 70.370 &Window.&Equal\ Size<Tab>^W= <C-W>= | |
933 an 70.380 &Window.&Max\ Height<Tab>^W_ <C-W>_ | |
934 an 70.390 &Window.M&in\ Height<Tab>^W1_ <C-W>1_ | |
935 an 70.400 &Window.Max\ &Width<Tab>^W\| <C-W>\| | |
936 an 70.410 &Window.Min\ Widt&h<Tab>^W1\| <C-W>1\| | |
937 | |
938 " The popup menu | |
939 an 1.10 PopUp.&Undo u | |
940 an 1.15 PopUp.-SEP1- <Nop> | |
941 vnoremenu 1.20 PopUp.Cu&t "+x | |
942 vnoremenu 1.30 PopUp.&Copy "+y | |
943 cnoremenu 1.30 PopUp.&Copy <C-Y> | |
944 nnoremenu 1.40 PopUp.&Paste "+gP | |
945 cnoremenu 1.40 PopUp.&Paste <C-R>+ | |
719 | 946 exe 'vnoremenu <script> 1.40 PopUp.&Paste ' . paste#paste_cmd['v'] |
947 exe 'inoremenu <script> 1.40 PopUp.&Paste ' . paste#paste_cmd['i'] | |
7 | 948 vnoremenu 1.50 PopUp.&Delete x |
949 an 1.55 PopUp.-SEP2- <Nop> | |
950 vnoremenu 1.60 PopUp.Select\ Blockwise <C-V> | |
36 | 951 |
952 nnoremenu 1.70 PopUp.Select\ &Word vaw | |
953 onoremenu 1.70 PopUp.Select\ &Word aw | |
954 vnoremenu 1.70 PopUp.Select\ &Word <C-C>vaw | |
955 inoremenu 1.70 PopUp.Select\ &Word <C-O>vaw | |
956 cnoremenu 1.70 PopUp.Select\ &Word <C-C>vaw | |
957 | |
958 nnoremenu 1.73 PopUp.Select\ &Sentence vas | |
959 onoremenu 1.73 PopUp.Select\ &Sentence as | |
960 vnoremenu 1.73 PopUp.Select\ &Sentence <C-C>vas | |
961 inoremenu 1.73 PopUp.Select\ &Sentence <C-O>vas | |
962 cnoremenu 1.73 PopUp.Select\ &Sentence <C-C>vas | |
963 | |
964 nnoremenu 1.77 PopUp.Select\ Pa&ragraph vap | |
965 onoremenu 1.77 PopUp.Select\ Pa&ragraph ap | |
966 vnoremenu 1.77 PopUp.Select\ Pa&ragraph <C-C>vap | |
967 inoremenu 1.77 PopUp.Select\ Pa&ragraph <C-O>vap | |
968 cnoremenu 1.77 PopUp.Select\ Pa&ragraph <C-C>vap | |
969 | |
970 nnoremenu 1.80 PopUp.Select\ &Line V | |
971 onoremenu 1.80 PopUp.Select\ &Line <C-C>V | |
972 vnoremenu 1.80 PopUp.Select\ &Line <C-C>V | |
973 inoremenu 1.80 PopUp.Select\ &Line <C-O>V | |
974 cnoremenu 1.80 PopUp.Select\ &Line <C-C>V | |
975 | |
976 nnoremenu 1.90 PopUp.Select\ &Block <C-V> | |
977 onoremenu 1.90 PopUp.Select\ &Block <C-C><C-V> | |
978 vnoremenu 1.90 PopUp.Select\ &Block <C-C><C-V> | |
979 inoremenu 1.90 PopUp.Select\ &Block <C-O><C-V> | |
980 cnoremenu 1.90 PopUp.Select\ &Block <C-C><C-V> | |
981 | |
7 | 982 noremenu <script> <silent> 1.100 PopUp.Select\ &All :<C-U>call <SID>SelectAll()<CR> |
983 inoremenu <script> <silent> 1.100 PopUp.Select\ &All <C-O>:call <SID>SelectAll()<CR> | |
984 cnoremenu <script> <silent> 1.100 PopUp.Select\ &All <C-U>call <SID>SelectAll()<CR> | |
985 | |
435 | 986 if has("spell") |
987 " Spell suggestions in the popup menu. Note that this will slow down the | |
988 " appearance of the menu! | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
989 func s:SpellPopup() |
435 | 990 if exists("s:changeitem") && s:changeitem != '' |
991 call <SID>SpellDel() | |
992 endif | |
980 | 993 |
994 " Return quickly if spell checking is not enabled. | |
438 | 995 if !&spell || &spelllang == '' |
996 return | |
997 endif | |
435 | 998 |
999 let curcol = col('.') | |
540 | 1000 let [w, a] = spellbadword() |
435 | 1001 if col('.') > curcol " don't use word after the cursor |
1002 let w = '' | |
1003 endif | |
1004 if w != '' | |
835 | 1005 if a == 'caps' |
1006 let s:suglist = [substitute(w, '.*', '\u&', '')] | |
1007 else | |
1008 let s:suglist = spellsuggest(w, 10) | |
1009 endif | |
2293
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1010 if len(s:suglist) > 0 |
13960
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1011 if !exists("g:menutrans_spell_change_ARG_to") |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1012 let g:menutrans_spell_change_ARG_to = 'Change\ "%s"\ to' |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1013 endif |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1014 let s:changeitem = printf(g:menutrans_spell_change_ARG_to, escape(w, ' .')) |
435 | 1015 let s:fromword = w |
1016 let pri = 1 | |
2293
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1017 " set 'cpo' to include the <CR> |
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1018 let cpo_save = &cpo |
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1019 set cpo&vim |
435 | 1020 for sug in s:suglist |
980 | 1021 exe 'anoremenu 1.5.' . pri . ' PopUp.' . s:changeitem . '.' . escape(sug, ' .') |
435 | 1022 \ . ' :call <SID>SpellReplace(' . pri . ')<CR>' |
1023 let pri += 1 | |
1024 endfor | |
1025 | |
13960
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1026 if !exists("g:menutrans_spell_add_ARG_to_word_list") |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1027 let g:menutrans_spell_add_ARG_to_word_list = 'Add\ "%s"\ to\ Word\ List' |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1028 endif |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1029 let s:additem = printf(g:menutrans_spell_add_ARG_to_word_list, escape(w, ' .')) |
980 | 1030 exe 'anoremenu 1.6 PopUp.' . s:additem . ' :spellgood ' . w . '<CR>' |
435 | 1031 |
13960
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1032 if !exists("g:menutrans_spell_ignore_ARG") |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1033 let g:menutrans_spell_ignore_ARG = 'Ignore\ "%s"' |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1034 endif |
bbff863d3cae
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
12804
diff
changeset
|
1035 let s:ignoreitem = printf(g:menutrans_spell_ignore_ARG, escape(w, ' .')) |
980 | 1036 exe 'anoremenu 1.7 PopUp.' . s:ignoreitem . ' :spellgood! ' . w . '<CR>' |
435 | 1037 |
980 | 1038 anoremenu 1.8 PopUp.-SpellSep- : |
2293
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1039 let &cpo = cpo_save |
435 | 1040 endif |
1041 endif | |
2293
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1042 call cursor(0, curcol) " put the cursor back where it was |
435 | 1043 endfunc |
1044 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
1045 func s:SpellReplace(n) |
435 | 1046 let l = getline('.') |
2293
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1047 " Move the cursor to the start of the word. |
e0fabd886db6
Fix bug: spell menu moved cursor, causing Copy not to work. Spell replacement
Bram Moolenaar <bram@vim.org>
parents:
2178
diff
changeset
|
1048 call spellbadword() |
435 | 1049 call setline('.', strpart(l, 0, col('.') - 1) . s:suglist[a:n - 1] |
1050 \ . strpart(l, col('.') + len(s:fromword) - 1)) | |
1051 endfunc | |
1052 | |
19713
8514e8b7e661
patch 8.2.0413: buffer menu does not handle special buffers properly
Bram Moolenaar <Bram@vim.org>
parents:
18860
diff
changeset
|
1053 func s:SpellDel() |
435 | 1054 exe "aunmenu PopUp." . s:changeitem |
1055 exe "aunmenu PopUp." . s:additem | |
1056 exe "aunmenu PopUp." . s:ignoreitem | |
1057 aunmenu PopUp.-SpellSep- | |
1058 let s:changeitem = '' | |
1059 endfun | |
1060 | |
980 | 1061 augroup SpellPopupMenu |
1062 au! MenuPopup * call <SID>SpellPopup() | |
1063 augroup END | |
435 | 1064 endif |
7 | 1065 |
1066 " The GUI toolbar (for MS-Windows and GTK) | |
1067 if has("toolbar") | |
1068 an 1.10 ToolBar.Open :browse confirm e<CR> | |
1069 an <silent> 1.20 ToolBar.Save :if expand("%") == ""<Bar>browse confirm w<Bar>else<Bar>confirm w<Bar>endif<CR> | |
1070 an 1.30 ToolBar.SaveAll :browse confirm wa<CR> | |
1071 | |
1072 if has("printer") | |
1073 an 1.40 ToolBar.Print :hardcopy<CR> | |
1074 vunmenu ToolBar.Print | |
1075 vnoremenu ToolBar.Print :hardcopy<CR> | |
1076 elseif has("unix") | |
1077 an 1.40 ToolBar.Print :w !lpr<CR> | |
1078 vunmenu ToolBar.Print | |
1079 vnoremenu ToolBar.Print :w !lpr<CR> | |
1080 endif | |
1081 | |
1082 an 1.45 ToolBar.-sep1- <Nop> | |
1083 an 1.50 ToolBar.Undo u | |
1084 an 1.60 ToolBar.Redo <C-R> | |
1085 | |
1086 an 1.65 ToolBar.-sep2- <Nop> | |
1087 vnoremenu 1.70 ToolBar.Cut "+x | |
1088 vnoremenu 1.80 ToolBar.Copy "+y | |
1089 cnoremenu 1.80 ToolBar.Copy <C-Y> | |
1090 nnoremenu 1.90 ToolBar.Paste "+gP | |
1091 cnoremenu ToolBar.Paste <C-R>+ | |
719 | 1092 exe 'vnoremenu <script> ToolBar.Paste ' . paste#paste_cmd['v'] |
1093 exe 'inoremenu <script> ToolBar.Paste ' . paste#paste_cmd['i'] | |
7 | 1094 |
1095 if !has("gui_athena") | |
1096 an 1.95 ToolBar.-sep3- <Nop> | |
205 | 1097 an 1.100 ToolBar.Replace :promptrepl<CR> |
7 | 1098 vunmenu ToolBar.Replace |
719 | 1099 vnoremenu ToolBar.Replace y:promptrepl <C-R>=<SID>FixFText()<CR><CR> |
205 | 1100 an 1.110 ToolBar.FindNext n |
1101 an 1.120 ToolBar.FindPrev N | |
7 | 1102 endif |
1103 | |
1104 an 1.215 ToolBar.-sep5- <Nop> | |
1105 an <silent> 1.220 ToolBar.LoadSesn :call <SID>LoadVimSesn()<CR> | |
1106 an <silent> 1.230 ToolBar.SaveSesn :call <SID>SaveVimSesn()<CR> | |
1107 an 1.240 ToolBar.RunScript :browse so<CR> | |
1108 | |
1109 an 1.245 ToolBar.-sep6- <Nop> | |
1110 an 1.250 ToolBar.Make :make<CR> | |
1111 an 1.270 ToolBar.RunCtags :exe "!" . g:ctags_command<CR> | |
1112 an 1.280 ToolBar.TagJump g<C-]> | |
1113 | |
1114 an 1.295 ToolBar.-sep7- <Nop> | |
1115 an 1.300 ToolBar.Help :help<CR> | |
1116 an <silent> 1.310 ToolBar.FindHelp :call <SID>Helpfind()<CR> | |
1117 | |
1118 " Only set the tooltips here if not done in a language menu file | |
1119 if exists("*Do_toolbar_tmenu") | |
1120 call Do_toolbar_tmenu() | |
1121 else | |
1122 let did_toolbar_tmenu = 1 | |
1123 tmenu ToolBar.Open Open file | |
1124 tmenu ToolBar.Save Save current file | |
1125 tmenu ToolBar.SaveAll Save all files | |
1126 tmenu ToolBar.Print Print | |
1127 tmenu ToolBar.Undo Undo | |
1128 tmenu ToolBar.Redo Redo | |
1129 tmenu ToolBar.Cut Cut to clipboard | |
1130 tmenu ToolBar.Copy Copy to clipboard | |
1131 tmenu ToolBar.Paste Paste from Clipboard | |
1132 if !has("gui_athena") | |
2034 | 1133 tmenu ToolBar.Replace Find / Replace... |
7 | 1134 tmenu ToolBar.FindNext Find Next |
1135 tmenu ToolBar.FindPrev Find Previous | |
1136 endif | |
980 | 1137 tmenu ToolBar.LoadSesn Choose a session to load |
7 | 1138 tmenu ToolBar.SaveSesn Save current session |
980 | 1139 tmenu ToolBar.RunScript Choose a Vim Script to run |
205 | 1140 tmenu ToolBar.Make Make current project (:make) |
1141 tmenu ToolBar.RunCtags Build tags in current directory tree (!ctags -R .) | |
7 | 1142 tmenu ToolBar.TagJump Jump to tag under cursor |
1143 tmenu ToolBar.Help Vim Help | |
1144 tmenu ToolBar.FindHelp Search Vim Help | |
1145 endif | |
1146 | |
1147 " Select a session to load; default to current session name if present | |
1148 fun! s:LoadVimSesn() | |
1149 if strlen(v:this_session) > 0 | |
1648 | 1150 let name = s:FnameEscape(v:this_session) |
7 | 1151 else |
1152 let name = "Session.vim" | |
1153 endif | |
1154 execute "browse so " . name | |
1155 endfun | |
1156 | |
1157 " Select a session to save; default to current session name if present | |
1158 fun! s:SaveVimSesn() | |
1159 if strlen(v:this_session) == 0 | |
1160 let v:this_session = "Session.vim" | |
1161 endif | |
1648 | 1162 execute "browse mksession! " . s:FnameEscape(v:this_session) |
7 | 1163 endfun |
1164 | |
1165 endif | |
1166 | |
1167 endif " !exists("did_install_default_menus") | |
1168 | |
1169 " Define these items always, so that syntax can be switched on when it wasn't. | |
1170 " But skip them when the Syntax menu was disabled by the user. | |
1171 if !exists("did_install_syntax_menu") | |
1172 an 50.212 &Syntax.&Manual :syn manual<CR> | |
1173 an 50.214 &Syntax.A&utomatic :syn on<CR> | |
11062 | 1174 an <silent> 50.216 &Syntax.On/Off\ for\ &This\ File :call <SID>SynOnOff()<CR> |
7 | 1175 if !exists("*s:SynOnOff") |
1176 fun s:SynOnOff() | |
1177 if has("syntax_items") | |
1178 syn clear | |
1179 else | |
1180 if !exists("g:syntax_on") | |
1181 syn manual | |
1182 endif | |
1183 set syn=ON | |
1184 endif | |
1185 endfun | |
1186 endif | |
1187 endif | |
1188 | |
1189 | |
1190 " Install the Syntax menu only when filetype.vim has been loaded or when | |
1191 " manual syntax highlighting is enabled. | |
1192 " Avoid installing the Syntax menu twice. | |
1193 if (exists("did_load_filetypes") || exists("syntax_on")) | |
1194 \ && !exists("did_install_syntax_menu") | |
1195 let did_install_syntax_menu = 1 | |
1196 | |
1197 " Skip setting up the individual syntax selection menus unless | |
1198 " do_syntax_sel_menu is defined (it takes quite a bit of time). | |
1199 if exists("do_syntax_sel_menu") | |
1200 runtime! synmenu.vim | |
1201 else | |
12804
6687b321fb91
patch 8.0.1279: initializing menus can be slow
Christian Brabandt <cb@256bit.org>
parents:
11062
diff
changeset
|
1202 an <silent> 50.10 &Syntax.&Show\ File\ Types\ in\ Menu :let do_syntax_sel_menu = 1<Bar>runtime! synmenu.vim<Bar>aunmenu &Syntax.&Show\ File\ Types\ in\ Menu<CR> |
7 | 1203 an 50.195 &Syntax.-SEP1- <Nop> |
1204 endif | |
1205 | |
1206 an 50.210 &Syntax.&Off :syn off<CR> | |
1207 an 50.700 &Syntax.-SEP3- <Nop> | |
11062 | 1208 an 50.710 &Syntax.Co&lor\ Test :sp $VIMRUNTIME/syntax/colortest.vim<Bar>so %<CR> |
1209 an 50.720 &Syntax.&Highlight\ Test :runtime syntax/hitest.vim<CR> | |
7 | 1210 an 50.730 &Syntax.&Convert\ to\ HTML :runtime syntax/2html.vim<CR> |
1211 | |
1212 endif " !exists("did_install_syntax_menu") | |
1213 | |
1214 " Restore the previous value of 'cpoptions'. | |
1215 let &cpo = s:cpo_save | |
1216 unlet s:cpo_save | |
1217 | |
1218 " vim: set sw=2 : |