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