diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:18:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 13:18:03 +0000 |
commit | afce081b90c1e2c50c3507758c7558a0dfa1f33e (patch) | |
tree | 3fb840f0bd9de41b463443ddf17131a0ad77f226 /runtime/delmenu.vim | |
parent | Initial commit. (diff) | |
download | vim-afce081b90c1e2c50c3507758c7558a0dfa1f33e.tar.xz vim-afce081b90c1e2c50c3507758c7558a0dfa1f33e.zip |
Adding upstream version 2:8.2.2434.upstream/2%8.2.2434upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'runtime/delmenu.vim')
-rw-r--r-- | runtime/delmenu.vim | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/runtime/delmenu.vim b/runtime/delmenu.vim new file mode 100644 index 0000000..040cc09 --- /dev/null +++ b/runtime/delmenu.vim @@ -0,0 +1,32 @@ +" 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: 2019 Dec 10 + +aunmenu * +tlunmenu * + +unlet! g:did_install_default_menus +unlet! g:did_install_syntax_menu + +if exists('g:did_menu_trans') + menutrans clear + unlet g:did_menu_trans +endif + +unlet! g:find_help_dialog + +unlet! g:menutrans_fileformat_choices +unlet! g:menutrans_fileformat_dialog +unlet! g:menutrans_help_dialog +unlet! g:menutrans_no_file +unlet! g:menutrans_path_dialog +unlet! g:menutrans_set_lang_to +unlet! g:menutrans_spell_add_ARG_to_word_list +unlet! g:menutrans_spell_change_ARG_to +unlet! g:menutrans_spell_ignore_ARG +unlet! g:menutrans_tags_dialog +unlet! g:menutrans_textwidth_dialog + +" vim: set sw=2 : |