Mercurial > vim
annotate runtime/delmenu.vim @ 15842:3af565215286 v8.1.0928
patch 8.1.0928: stray log function call
commit https://github.com/vim/vim/commit/d634024b90c7ae6ff08c1970646f1bca91f5611f
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 16 00:00:28 2019 +0100
patch 8.1.0928: stray log function call
Problem: Stray log function call.
Solution: Remove the log function call.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 16 Feb 2019 00:15:06 +0100 |
parents | 405309f9dd13 |
children | 8ac85adee561 |
rev | line source |
---|---|
7 | 1 " 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> | |
5 " Last Change: 2001 May 27 | |
6 | |
7 aunmenu * | |
14952
405309f9dd13
patch 8.1.0487: no menus specifically for the terminal window
Bram Moolenaar <Bram@vim.org>
parents:
7
diff
changeset
|
8 tlunmenu * |
7 | 9 |
10 silent! unlet did_install_default_menus | |
11 silent! unlet did_install_syntax_menu | |
12 if exists("did_menu_trans") | |
13 menutrans clear | |
14 unlet did_menu_trans | |
15 endif | |
16 | |
17 silent! unlet find_help_dialog | |
18 | |
19 silent! unlet menutrans_help_dialog | |
20 silent! unlet menutrans_path_dialog | |
21 silent! unlet menutrans_tags_dialog | |
22 silent! unlet menutrans_textwidth_dialog | |
23 silent! unlet menutrans_fileformat_dialog | |
24 silent! unlet menutrans_no_file | |
25 | |
26 " vim: set sw=2 : |