view runtime/delmenu.vim @ 11595:42cd59477698 v8.0.0680

patch 8.0.0680: plugins in start packages are sourced twice commit https://github.com/vim/vim/commit/07ecfa64a18609a986f21d6132d04ee8934f3200 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jun 27 14:43:55 2017 +0200 patch 8.0.0680: plugins in start packages are sourced twice Problem: Plugins in start packages are sourced twice. (mseplowitz) Solution: Use the unmodified runtime path when loading plugins (test by Ingo Karkat, closes #1801)
author Christian Brabandt <cb@256bit.org>
date Tue, 27 Jun 2017 14:45:04 +0200
parents 3fc0f57ecb91
children 405309f9dd13
line wrap: on
line source

" 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 *

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 :