Code
Git
bin
cmd
dev
etc
mingw64
usr
bin
etc
lib
libexec
share
applications
bash-completion
cygwin
fish
gdb
git
glib-2.0
gnupg
icons
licenses
makepkg
makepkg-template
mintty
misc
nano
p11-kit
perl5
pki
tabset
terminfo
vim
vim81
autoload
colors
compiler
doc
ftplugin
indent
keymap
lang
macros
pack
plugin
print
spell
syntax
tools
tutor
bugreport.vim
defaults.vim
delmenu.vim
evim.vim
filetype.vim
ftoff.vim
ftplugin.vim
ftplugof.vim
gvimrc_example.vim
indent.vim
indoff.vim
menu.vim
mswin.vim
optwin.vim
rgb.txt
scripts.vim
synmenu.vim
vimrc_example.vim
ssl
LICENSE.txt
ReleaseNotes.html
git-bash.exe
git-cmd.exe
unins000.dat
unins000.exe
unins000.msg
README.md
27 lines
656 B
VimL
27 lines
656 B
VimL
" This Vim script deletes all the menus, so that they can be redefined.
|
|
" Warning: This also deletes all menus defined by the user!
|
|
"
|
|
" Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
" Last Change: 2001 May 27
|
|
|
|
aunmenu *
|
|
tlunmenu *
|
|
|
|
silent! unlet did_install_default_menus
|
|
silent! unlet did_install_syntax_menu
|
|
if exists("did_menu_trans")
|
|
menutrans clear
|
|
unlet did_menu_trans
|
|
endif
|
|
|
|
silent! unlet find_help_dialog
|
|
|
|
silent! unlet menutrans_help_dialog
|
|
silent! unlet menutrans_path_dialog
|
|
silent! unlet menutrans_tags_dialog
|
|
silent! unlet menutrans_textwidth_dialog
|
|
silent! unlet menutrans_fileformat_dialog
|
|
silent! unlet menutrans_no_file
|
|
|
|
" vim: set sw=2 :
|