" These menu commands create the default Vim menus. " You can also use this as a start for your own set of menus. " Note that ":amenu" is often used to make a menu work in all modes. " " Maintainer: Bram Moolenaar " Last change: 2000 Jun 16 " Make sure the '<' and 'C' flags are not included in 'cpoptions', otherwise " would not be recognized. See ":help 'cpoptions'". let menu_cpo_save = &cpo let &cpo = "" " Avoid installing the menus twice if !exists("did_install_default_menus") let did_install_default_menus = 1 " Help menu amenu 9999.10 &Help.&Overview :help amenu 9999.20 &Help.&How-to\ links :help how-to amenu 9999.30 &Help.&GUI :help gui amenu 9999.40 &Help.&Credits :help credits amenu 9999.50 &Help.Co&pying :help uganda amenu 9999.55 &Help.-sep- amenu 9999.60 &Help.&Version :version amenu 9999.70 &Help.&About :intro " File menu amenu 10.310 &File.&Open\.\.\.:e :browse confirm e amenu 10.320 &File.Sp&lit-Open\.\.\.:sp :browse sp amenu 10.330 &File.&Close:q :confirm q amenu 10.335 &File.-SEP1- : amenu 10.340 &File.&Save:w :confirm w amenu 10.350 &File.Save\ &As\.\.\.:w :browse confirm w amenu 10.355 &File.-SEP2- : if has("win32") " Use Notepad for printing. ":w >> prn" doesn't work for PostScript printers. amenu 10.360 &File.&Print :let smod=&mod:let ttt=tempname() \exec ":w! ".tttlet &mod=smodexec "!notepad /p ".ttt \exec "!del ".ttt vunmenu &File.&Print vmenu &File.&Print :let smod=&mod:let ttt=tempname() \exec ":'<,'>w! ".tttlet &mod=smodexec "!notepad /p ".ttt \exec "!del ".ttt elseif has("unix") amenu 10.360 &File.&Print :w !lpr vunmenu &File.&Print vmenu &File.&Print :w !lpr endif amenu 10.365 &File.-SEP3- : amenu 10.370 &File.Sa&ve-Exit:wqa :confirm wqa amenu 10.380 &File.E&xit:qa :confirm qa " Edit menu amenu 20.310 &Edit.&Undou u amenu 20.320 &Edit.&Redo^R amenu 20.330 &Edit.Repea&t\. . amenu 20.335 &Edit.-SEP1- : vmenu 20.340 &Edit.Cu&t"*x "*x vmenu 20.350 &Edit.&Copy"*y "*y nmenu 20.360 &Edit.&Paste"*p "*p vmenu &Edit.&Paste"*p "*P`]:if col(".")!=1exe "norm l"endif imenu &Edit.&Paste"*p :if col(".")!=1exe 'norm "*p'elseexe 'norm "*P'endif`]a cmenu &Edit.&Paste"*p * nmenu 20.370 &Edit.Put\ &Before[p [p imenu &Edit.Put\ &Before[p [p nmenu 20.380 &Edit.Put\ &After]p ]p imenu &Edit.Put\ &After]p ]p if has("win32") vmenu 20.390 &Edit.&Deletex x endif amenu 20.400 &Edit.&Select\ allggVG :if &slm != ""exe ":norm gggHG"elseexe ":norm ggVG"endif amenu 20.405 &Edit.-SEP2- : if has("win32") || has("gui_gtk") amenu 20.410 &Edit.&Find\.\.\. :promptfind amenu 20.420 &Edit.Find\ and\ R&eplace\.\.\. :promptrepl vunmenu &Edit.Find\ and\ R&eplace\.\.\. vmenu &Edit.Find\ and\ R&eplace\.\.\. y:promptrepl " else amenu 20.410 &Edit.&Find/ / amenu 20.420 &Edit.Find\ and\ R&eplace:%s :%s/ vunmenu &Edit.Find\ and\ R&eplace vmenu &Edit.Find\ and\ R&eplace:s :s/ endif amenu 20.425 &Edit.-SEP3- : amenu 20.430 &Edit.Options\.\.\. :options " Programming menu amenu 40.300 &Tools.&Jump\ to\ this\ tagg^] g vunmenu &Tools.&Jump\ to\ this\ tagg^] vmenu &Tools.&Jump\ to\ this\ tagg^] g amenu 40.310 &Tools.Jump\ &back^T amenu 40.320 &Tools.Build\ &Tags\ File :!ctags -R . amenu 40.330 &Tools.-SEP1- : amenu 40.340 &Tools.&Make:make :make amenu 40.350 &Tools.&List\ Errors:cl :cl amenu 40.360 &Tools.L&ist\ Messages:cl! :cl! amenu 40.370 &Tools.&Next\ Error:cn :cn amenu 40.380 &Tools.&Previous\ Error:cp :cp amenu 40.390 &Tools.&Older\ List:cold :colder amenu 40.400 &Tools.N&ewer\ List:cnew :cnewer " Can't delete a menu in Athena version if has("gui_athena") let no_buffers_menu = 1 endif if !exists("no_buffers_menu") " Buffer list menu -- Setup functions & actions " wait with building the menu until after loading 'session' files. Makes " startup faster. let bmenu_wait = 1 if !exists("bmenu_priority") let bmenu_priority = 60 endif func! BmenuAdd() if g:bmenu_wait == 0 call BMenuFilename(expand(""), expand("")) endif endfunc func! BmenuRemove() if g:bmenu_wait == 0 let munge = BmenuMunge(expand(""), expand("")) if g:bmenu_short == 0 exe 'aun &Buffers.' . munge else exe 'aun &Buffers.' . BmenuHash2(munge) . munge endif let g:bmenu_count = g:bmenu_count - 1 endif endfunc " buffer menu stuff func! BmenuShow(...) let g:bmenu_wait = 1 let g:bmenu_short = 1 let g:bmenu_count = 0 if !exists('g:bmenu_cutoff') let g:bmenu_cutoff = &lines / 2 endif " remove old menu, if exists exe g:bmenu_priority . 'am &Buffers.x x' aun &Buffers " get new priority, if exists if a:0 == 1 let g:bmenu_priority = a:1 endif " create new menu; make 'cpo' empty to include the let cpo_save = &cpo let &cpo = "" exe 'am ' . g:bmenu_priority . ".2 &Buffers.Refresh :call BmenuShow()" exe 'am ' . g:bmenu_priority . ".4 &Buffers.Delete :bd" exe 'am ' . g:bmenu_priority . ".6 &Buffers.Alternate :b #" exe 'am ' . g:bmenu_priority . ".8 &Buffers.-SEP- :" let &cpo = cpo_save " figure out how many buffers there are let buf = 1 while buf <= bufnr('$') if bufexists(buf) let g:bmenu_count = g:bmenu_count + 1 endif let buf = buf + 1 endwhile if g:bmenu_count < g:bmenu_cutoff let g:bmenu_short = 0 endif " iterate through buffer list, adding each buffer to the menu: let buf = 1 while buf <= bufnr('$') if bufexists(buf) call BMenuFilename(bufname(buf), buf) endif let buf = buf + 1 endwhile let g:bmenu_wait = 0 aug buffer_list au! au BufCreate,BufFilePost * call BmenuAdd() au BufDelete,BufFilePre * call BmenuRemove() aug END endfunc func! BmenuHash(name) " Make name all upper case, so that chars are between 32 and 96 let nm = substitute(a:name, ".*", '\U\0', "") " convert first six chars into a number for sorting: return (char2nr(nm[0]) - 32) * 0x1000000 + (char2nr(nm[1]) - 32) * 0x40000 + (char2nr(nm[2]) - 32) * 0x1000 + (char2nr(nm[3]) - 32) * 0x40 + (char2nr(nm[4]) - 32) * 0x40 + (char2nr(nm[5]) - 32) endfunc func! BmenuHash2(name) let nm = substitute(a:name, ".", '\L\0', "") if nm[0] >= 'a' && nm[0] <= 'd' return '&abcd.' elseif nm[0] >= 'e' && nm[0] <= 'h' return '&efgh.' elseif nm[0] >= 'i' && nm[0] <= 'l' return '&ijkl.' elseif nm[0] >= 'm' && nm[0] <= 'p' return '&mnop.' elseif nm[0] >= 'q' && nm[0] <= 't' return '&qrst.' elseif nm[0] >= 'u' && nm[0] <= 'z' return '&u-z.' else return '&others.' endfunc " take a buffer number, return a name to insert into a menu: func! BMenuFilename(name, num) let munge = BmenuMunge(a:name, a:num) let hash = BmenuHash(munge) if g:bmenu_short == 0 let name = 'am ' . g:bmenu_priority . '.' . hash .' &Buffers.' . munge else let name = 'am ' . g:bmenu_priority . '.' . hash . '.' . hash .' &Buffers.' . BmenuHash2(munge) . munge endif " make 'cpo' empty to include the let cpo_save = &cpo let &cpo = "" exe name . ' :b' . a:num . '' let &cpo = cpo_save endfunc func! BmenuMunge(fname, bnum) let name = a:fname if name == '' let name = '[No File]' endif let name = fnamemodify(name, ':~') if !isdirectory(a:fname) " detach file name and separate it out: let name2 = fnamemodify(name, ':t') if a:bnum >= 0 let name2 = name2 . ' (' . a:bnum . ')' endif let name = name2 . "\t" . fnamemodify(name,':h') endif let name = escape(name, "\\. \t|") let name = substitute(name, "\n", "^@", "g") return name endfunc " When just starting Vim, load the buffer menu later if has("vim_starting") augroup LoadBufferMenu au! VimEnter * if !exists("no_buffers_menu") | call BmenuShow() | endif au VimEnter * au! LoadBufferMenu augroup END else call BmenuShow() endif endif " !exists("no_buffers_menu") " Window menu amenu 70.300 &Window.&New^Wn n amenu 70.310 &Window.S&plit^Ws s amenu 70.320 &Window.Sp&lit\ To\ #^W^^ amenu 70.325 &Window.-SEP1- : amenu 70.330 &Window.&Close^Wc :confirm close amenu 70.340 &Window.Close\ &Other(s)^Wo :confirm only amenu 70.345 &Window.-SEP2- : amenu 70.350 &Window.Ne&xt^Ww w amenu 70.360 &Window.P&revious^WW W amenu 70.365 &Window.-SEP3- : amenu 70.370 &Window.&Equal\ Height^W= = amenu 70.380 &Window.&Max\ Height^W_ _ amenu 70.390 &Window.M&in\ Height^W1_ 1_ amenu 70.400 &Window.Rotate\ &Up^WR R amenu 70.410 &Window.Rotate\ &Down^Wr r if has("win32") || has("gui_gtk") amenu 70.420 &Window.-SEP4- : amenu 70.430 &Window.Select\ &Font\.\.\. :set guifont=* endif " The popup menu amenu 1.10 PopUp.&Undo u amenu 1.15 PopUp.-SEP1- : vmenu 1.20 PopUp.Cu&t "*x vmenu 1.30 PopUp.&Copy "*y nmenu 1.40 PopUp.&Paste "*P`]:if col(".")!=1exe "norm l"endif vmenu 1.40 PopUp.&Paste "-x"*P`] imenu 1.40 PopUp.&Paste :if col(".")!=1exe 'norm "*p'elseexe 'norm "*P'endif`]a cmenu 1.40 PopUp.&Paste * vmenu 1.50 PopUp.&Delete x amenu 1.55 PopUp.-SEP2- : vmenu 1.60 PopUp.Select\ Blockwise amenu 1.70 PopUp.Select\ &Word vaw amenu 1.80 PopUp.Select\ &Line V amenu 1.90 PopUp.Select\ &Block amenu 1.100 PopUp.Select\ &All ggVG " The GUI toolbar (for Win32 or GTK) if has("win32") || has("gui_gtk") amenu 1.10 ToolBar.Open :browse e tmenu ToolBar.Open Open file amenu 1.20 ToolBar.Save :w tmenu ToolBar.Save Save current file amenu 1.30 ToolBar.SaveAll :wa tmenu ToolBar.SaveAll Save all files if has("win32") amenu 1.40 ToolBar.Print :let smod=&mod:let ttt=tempname()exec ":w! ".tttlet &mod=smodexec "!notepad /p ".tttexec "!del ".ttt vunmenu ToolBar.Print vmenu ToolBar.Print :let smod=&mod:let ttt=tempname()exec ":'<,'>w! ".tttlet &mod=smodexec "!notepad /p ".tttexec "!del ".ttt else amenu 1.40 ToolBar.Print :w !lpr vunmenu ToolBar.Print vmenu ToolBar.Print :w !lpr endif tmenu ToolBar.Print Print amenu 1.45 ToolBar.-sep1- amenu 1.50 ToolBar.Undo u tmenu ToolBar.Undo Undo amenu 1.60 ToolBar.Redo tmenu ToolBar.Redo Redo amenu 1.65 ToolBar.-sep2- vmenu 1.70 ToolBar.Cut "*x tmenu ToolBar.Cut Cut to clipboard vmenu 1.80 ToolBar.Copy "*y tmenu ToolBar.Copy Copy to clipboard nmenu 1.90 ToolBar.Paste i* vmenu ToolBar.Paste "-xi* menu! ToolBar.Paste * tmenu ToolBar.Paste Paste from Clipboard amenu 1.95 ToolBar.-sep3- amenu 1.100 ToolBar.Find :promptfind tmenu ToolBar.Find Find... amenu 1.110 ToolBar.FindNext n tmenu ToolBar.FindNext Find Next amenu 1.120 ToolBar.FindPrev N tmenu ToolBar.FindPrev Find Previous amenu 1.130 ToolBar.Replace :promptrepl vunmenu ToolBar.Replace vmenu ToolBar.Replace y:promptrepl " tmenu ToolBar.Replace Find & Replace... if 0 " disabled; These are in the Windows menu amenu 1.135 ToolBar.-sep4- amenu 1.140 ToolBar.New n tmenu ToolBar.New New Window amenu 1.150 ToolBar.WinSplit s tmenu ToolBar.WinSplit Split Window amenu 1.160 ToolBar.WinMax :resize 200 tmenu ToolBar.WinMax Maximise Window amenu 1.170 ToolBar.WinMin :resize 1 tmenu ToolBar.WinMin Minimise Window amenu 1.180 ToolBar.WinClose :close tmenu ToolBar.WinClose Close Window endif amenu 1.185 ToolBar.-sep5- amenu 1.190 ToolBar.LoadSesn :call LoadVimSesn() tmenu ToolBar.LoadSesn Load session amenu 1.200 ToolBar.SaveSesn :call SaveVimSesn() tmenu ToolBar.SaveSesn Save current session amenu 1.210 ToolBar.RunScript :browse so tmenu ToolBar.RunScript Run a Vim Script amenu 1.215 ToolBar.-sep6- amenu 1.220 ToolBar.Make :make tmenu ToolBar.Make Make current project amenu 1.230 ToolBar.Shell :sh tmenu ToolBar.Shell Open a command shell amenu 1.240 ToolBar.RunCtags :!ctags -R . tmenu ToolBar.RunCtags Build tags in current directory tree amenu 1.250 ToolBar.TagJump g] tmenu ToolBar.TagJump Jump to tag under cursor amenu 1.265 ToolBar.-sep7- amenu 1.270 ToolBar.Help :help tmenu ToolBar.Help Vim Help if has("gui_gtk") amenu 1.280 ToolBar.FindHelp :helpfind else amenu 1.280 ToolBar.FindHelp :help endif tmenu ToolBar.FindHelp Search Vim Help " Select a session to load; default to current session name if present fun LoadVimSesn() if exists("this_session") let name = this_session else let name = "session.vim" endif execute "browse so " . name endfun " Select a session to save; default to current session name if present fun SaveVimSesn() if !exists("this_session") let this_session = "session.vim" endif execute "browse mksession! " . this_session endfun endif " has("win32") || has("gui_gtk") endif " !exists("did_install_default_menus") " Install the Syntax menu only when filetype.vim has been loaded or when " manual syntax highlighting is enabled. " Avoid installing the Syntax menu twice. if (exists("did_load_filetypes") || exists("syntax_on")) \ && !exists("did_install_syntax_menu") let did_install_syntax_menu = 1 " Define the SetSyn function, used for the Syntax menu entries. " Set 'filetype' and also 'syntax' if it is manually selected. fun! SetSyn(name) if a:name == "fvwm1" let use_fvwm_1 = 1 let use_fvwm_2 = 0 let name = "fvwm" elseif a:name == "fvwm2" let use_fvwm_2 = 1 let use_fvwm_1 = 0 let name = "fvwm" else let name = a:name endif if !exists("g:syntax_menu_synonly") exe "set ft=" . name if exists("g:syntax_manual") exe "set syn=" . name endif else exe "set syn=" . name endif endfun " Use the SynMenu command and function to define all menu entries command -nargs=* SynMenu call SynMenu() let current_menu_name = "" let current_menu_nr = 0 let current_menu_item = 0 let current_menu_char = "" fun SynMenu(arg) " isolate menu name: until the first dot let i = match(a:arg, '\.') let menu_name = strpart(a:arg, 0, i) let r = strpart(a:arg, i + 1, 999) " isolate submenu name: until the colon let i = match(r, ":") let submenu_name = strpart(r, 0, i) " after the colon is the syntax name let syntax_name = strpart(r, i + 1, 999) if g:current_menu_name != menu_name let g:current_menu_name = menu_name let g:current_menu_nr = g:current_menu_nr + 10 let g:current_menu_item = 100 let g:current_menu_char = submenu_name[0] else " When starting a new letter, insert a menu separator. " Make an exception for "4DOS", which is after "MS-DOS". let c = submenu_name[0] if c != g:current_menu_char && c != "4" exe 'am 50.' . g:current_menu_nr . '.' . g:current_menu_item . ' &Syntax.' . menu_name . ".-" . c . '- ' let g:current_menu_item = g:current_menu_item + 10 let g:current_menu_char = c endif endif exe 'am 50.' . g:current_menu_nr . '.' . g:current_menu_item . ' &Syntax.' . menu_name . "." . submenu_name . ' :cal SetSyn("' . syntax_name . '")' let g:current_menu_item = g:current_menu_item + 10 endfun SynMenu AB.Abaqus:abaqus SynMenu AB.ABC:abc SynMenu AB.ABEL:abel SynMenu AB.Ada:ada SynMenu AB.AHDL:ahdl SynMenu AB.Amiga\ DOS:amiga SynMenu AB.Arc\ Macro\ Language:aml SynMenu AB.Apache\ config:apache SynMenu AB.Apache-style\ config:apachestyle SynMenu AB.Applix\ ELF:elf SynMenu AB.ASP\ with\ VBSages:aspvbs SynMenu AB.ASP\ with\ Perl:aspperl SynMenu AB.Assembly\ (GNU):asm SynMenu AB.Assembly\ (H8300):asmh8300 SynMenu AB.Assembly\ (Microsoft):masm SynMenu AB.Assembly\ (Netwide):nasm SynMenu AB.ASN\.1:asn SynMenu AB.Atlas:atlas SynMenu AB.Avenue:ave SynMenu AB.Awk:awk SynMenu AB.BASIC:basic SynMenu AB.BC\ calculator:bc SynMenu AB.BibFile:bib SynMenu CD.C:c SynMenu CD.C++:cpp SynMenu CD.Cascading\ Style\ Sheets:css SynMenu CD.Century\ Term:cterm SynMenu CD.CHILL:ch SynMenu CD.Change:change SynMenu CD.Clean:clean SynMenu CD.Clipper:clipper SynMenu CD.Cold\ Fusion:cf SynMenu CD.Configure\ script:config SynMenu CD.Csh\ shell\ script:csh SynMenu CD.Ctrl-H:ctrlh SynMenu CD.Cobol:cobol SynMenu CD.CSP:csp SynMenu CD.CUPL:cupl SynMenu CD.CUPL\ simulation:cuplsim SynMenu CD.CVS\ commit:cvs SynMenu CD.CWEB:cweb SynMenu CD.Diff:diff SynMenu CD.Digital\ Command\ Lang:dcl SynMenu CD.Diva\ (with\ SKILL):diva SynMenu CD.Dracula:dracula SynMenu CD.DTD:dtd SynMenu EFGH.Eiffel:eiffel SynMenu EFGH.Elm\ Filter:elmfilt SynMenu EFGH.ERicsson\ LANGuage:erlang SynMenu EFGH.ESQL-C:esqlc SynMenu EFGH.Expect:expect SynMenu EFGH.Exports:exports SynMenu EFGH.Focus\ Executable:focexec SynMenu EFGH.Focus\ Master:master SynMenu EFGH.FORM:form SynMenu EFGH.Forth:forth SynMenu EFGH.Fortran:fortran SynMenu EFGH.Fvwm\ configuration:fvwm1 SynMenu EFGH.Fvwm2\ configuration:fvwm2 SynMenu EFGH.GDB\ command\ file:gdb SynMenu EFGH.GDMO:gdmo SynMenu EFGH.Gedcom:gedcom SynMenu EFGH.GP:gp SynMenu EFGH.GNUplot:gnuplot SynMenu EFGH.Haskell:haskell SynMenu EFGH.Haskell-literal:lhaskell SynMenu EFGH.HTML:html SynMenu EFGH.HTML\ with\ M4:htmlm4 SynMenu EFGH.Hyper\ Builder:hb SynMenu IJKL.Icon:icon SynMenu IJKL.IDL:idl SynMenu IJKL.Interactive\ Data\ Lang:idlang SynMenu IJKL.Inform:inform SynMenu IJKL.InstallShield\ Rules:ishd SynMenu IJKL.Java:java SynMenu IJKL.JavaCC:javacc SynMenu IJKL.JavaScript:javascript SynMenu IJKL.Java\ Server\ Pages:jsp SynMenu IJKL.Java\ Properties:jproperties SynMenu IJKL.Jgraph:jgraph SynMenu IJKL.KDE\ script:kscript SynMenu IJKL.Kimwitu:kwt SynMenu IJKL.Lace:lace SynMenu IJKL.Latte:latte SynMenu IJKL.Lex:lex SynMenu IJKL.Lilo:lilo SynMenu IJKL.Lisp:lisp SynMenu IJKL.Lite:lite SynMenu IJKL.LOTOS:lotos SynMenu IJKL.Lout:lout SynMenu IJKL.Lua:lua SynMenu IJKL.Lynx\ Style:lss SynMenu MNO.M4:m4 SynMenu MNO.Mail:mail SynMenu MNO.Makefile:make SynMenu MNO.MakeIndex:ist SynMenu MNO.Man\ page:man SynMenu MNO.Maple:maple SynMenu MNO.Matlab:matlab SynMenu MNO.Maya\ Ext\.\ Lang\.:mel SynMenu MNO.Metafont:mf SynMenu MNO.MetaPost:mp SynMenu MNO.MS\ Module\ Definition:def SynMenu MNO.Model:model SynMenu MNO.Modsim\ III:modsim3 SynMenu MNO.Modula\ 2:modula2 SynMenu MNO.Modula\ 3:modula3 SynMenu MNO.Msql:msql SynMenu MNO.MS-DOS\ \.bat\ file:dosbatch SynMenu MNO.4DOS\ \.bat\ file:btm SynMenu MNO.MS-DOS\ \.ini\ file:dosini SynMenu MNO.MS\ Resource\ file:rc SynMenu MNO.Muttrc:muttrc SynMenu MNO.Nastran\ input/DMAP:nastran SynMenu MNO.Novell\ batch:ncf SynMenu MNO.Nroff:nroff SynMenu MNO.Objective\ C:objc SynMenu MNO.OCAML:ocaml SynMenu MNO.Open\ Psion\ Lang:opl SynMenu MNO.Oracle\ config:ora SynMenu PQR.Pascal:pascal SynMenu PQR.PCCTS:pccts SynMenu PQR.Perl:perl SynMenu PQR.Perl\ POD:pod SynMenu PQR.Perl\ XS:xs SynMenu PQR.PHP\ 3:php3 SynMenu PQR.Phtml:phtml SynMenu PQR.Pike:pike SynMenu PQR.Pine\ RC:pine SynMenu PQR.PL/SQL:plsql SynMenu PQR.PO\ (GNU\ gettext):po SynMenu PQR.PostScript:postscr SynMenu PQR.Povray:pov SynMenu PQR.Printcap:pcap SynMenu PQR.Procmail:procmail SynMenu PQR.Prolog:prolog SynMenu PQR.Purify\ log:purifylog SynMenu PQR.Python:python SynMenu PQR.Radiance:radiance SynMenu PQR.RCS\ log\ output:rcslog SynMenu PQR.Rebol:rebol SynMenu PQR.Remind:remind SynMenu PQR.Renderman\ Shader\ Lang:sl SynMenu PQR.Rexx:rexx SynMenu PQR.Rpcgen:rpcgen SynMenu PQR.Ruby:ruby SynMenu S.S-lang:slang SynMenu S.Samba\ config:samba SynMenu S.SAS:sas SynMenu S.Sather:sather SynMenu S.Scheme:scheme SynMenu S.SDL:sdl SynMenu S.Sed:sed SynMenu S.Sendmail\.cf:sm SynMenu S.SGML\ DTD:sgml SynMenu S.SGML\ linuxdoc:sgmllnx SynMenu S.Sh\ shell\ script:sh SynMenu S.SiCAD:sicad SynMenu S.Simula:simula SynMenu S.SKILL:skill SynMenu S.SLRN\ rc:slrnrc SynMenu S.SLRN\ score:slrnsc SynMenu S.SmallTalk:st SynMenu S.SMIL:smil SynMenu S.SNMP\ MIB:mib SynMenu S.SNNS\ network:snnsnet SynMenu S.SNNS\ pattern:snnspat SynMenu S.SNNS\ result:snnsres SynMenu S.SPEC\ (Linux\ RPM):spec SynMenu S.Spice:spice SynMenu S.Speedup:spup SynMenu S.Squid:squid SynMenu S.SQL:sql SynMenu S.SQR:sqr SynMenu S.Standard\ ML:sml SynMenu S.Stored\ Procedures:stp SynMenu TUV.Tads:tads SynMenu TUV.Tags:tags SynMenu TUV.Tcl/Tk:tcl SynMenu TUV.TealInfo:tli SynMenu TUV.Telix\ Salt:tsalt SynMenu TUV.Termcap:ptcap SynMenu TUV.TeX:tex SynMenu TUV.Texinfo:texinfo SynMenu TUV.TF\ mud\ client:tf SynMenu TUV.UIT/UIL:uil SynMenu TUV.Verilog\ HDL:verilog SynMenu TUV.Vgrindefs:vgrindefs SynMenu TUV.VHDL:vhdl SynMenu TUV.Vim\ help\ file:help SynMenu TUV.Vim\ script:vim SynMenu TUV.Viminfo\ file:viminfo SynMenu TUV.Visual\ Basic:vb SynMenu TUV.VRML:vrml SynMenu WXYZ.WEB:web SynMenu WXYZ.Webmacro:webmacro SynMenu WXYZ.Website\ MetaLanguage:wml SynMenu WXYZ.Whitespace\ (add):whitespace SynMenu WXYZ.WinBatch/Webbatch:winbatch SynMenu WXYZ.X\ Pixmap:xpm SynMenu WXYZ.X\ Pixmap\ (2):xpm2 SynMenu WXYZ.X\ resources:xdefaults SynMenu WXYZ.Xmath:xmath SynMenu WXYZ.XML:xml SynMenu WXYZ.XXD\ hex\ dump:xxd SynMenu WXYZ.Yacc:yacc SynMenu WXYZ.Z-80\ assembler:z8a SynMenu WXYZ.Zsh\ shell\ script:zsh unlet current_menu_name unlet current_menu_nr unlet current_menu_item unlet current_menu_char delcommand SynMenu delfun SynMenu am 50.95 &Syntax.-SEP1- : am 50.100 &Syntax.Set\ 'syntax'\ only :let syntax_menu_synonly=1 am 50.101 &Syntax.Set\ 'filetype'\ too :call SmenuNosynonly() fun! SmenuNosynonly() if exists("syntax_menu_synonly") unlet syntax_menu_synonly endif endfun am 50.110 &Syntax.&Off :syn off am 50.112 &Syntax.&Manual :syn manual am 50.114 &Syntax.A&utomatic :syn on am 50.116 &Syntax.&on\ (this\ file) :call SmenuSynoff() fun! SmenuSynoff() if !exists("syntax_on") syn manual endif set syn=ON endfun am 50.118 &Syntax.o&ff\ (this\ file) :syn clear am 50.700 &Syntax.-SEP3- : am 50.710 &Syntax.Co&lor\ test :sp $VIMRUNTIME/syntax/colortest.vimso % am 50.720 &Syntax.&Highlight\ test :so $VIMRUNTIME/syntax/hitest.vim am 50.730 &Syntax.&Convert\ to\ HTML :so $VIMRUNTIME/syntax/2html.vim endif " !exists("did_install_syntax_menu") " Restore the previous value of 'cpoptions'. let &cpo = menu_cpo_save unlet menu_cpo_save