blob: 13721826412481656008d67fadbf3acb81059613 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" This Vim script deletes all the menus, so that they can be redefined.
2" Warning: This also deletes all menus defined by the user!
3"
4" Maintainer: Bram Moolenaar <Bram@vim.org>
Bram Moolenaar8fe10002019-09-11 22:56:44 +02005" Last Change: 2019 Sep 11
Bram Moolenaar071d4272004-06-13 20:20:40 +00006
7aunmenu *
Bram Moolenaar4c5d8152018-10-19 22:36:53 +02008tlunmenu *
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10silent! unlet did_install_default_menus
11silent! unlet did_install_syntax_menu
12if exists("did_menu_trans")
13 menutrans clear
14 unlet did_menu_trans
15endif
16
17silent! unlet find_help_dialog
18
19silent! unlet menutrans_help_dialog
20silent! unlet menutrans_path_dialog
21silent! unlet menutrans_tags_dialog
22silent! unlet menutrans_textwidth_dialog
23silent! unlet menutrans_fileformat_dialog
Bram Moolenaar8fe10002019-09-11 22:56:44 +020024silent! unlet menutrans_fileformat_choices
Bram Moolenaar071d4272004-06-13 20:20:40 +000025silent! unlet menutrans_no_file
Bram Moolenaar8fe10002019-09-11 22:56:44 +020026silent! unlet menutrans_set_lang_to
27silent! unlet menutrans_spell_change_ARG_to
28silent! unlet menutrans_spell_add_ARG_to_word_list
29silent! unlet menutrans_spell_ignore_ARG
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
31" vim: set sw=2 :