Mercurial > vim
annotate runtime/delmenu.vim @ 15414:d7432dcb6b7c v8.1.0715
patch 8.1.0715: superfluous call to redraw_win_later()
commit https://github.com/vim/vim/commit/6f7e555f7440df148350468ad8bc6d559d676d7c
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jan 11 11:55:16 2019 +0100
patch 8.1.0715: superfluous call to redraw_win_later()
Problem: Superfluous call to redraw_win_later().
Solution: Remove the call.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 11 Jan 2019 12:00:10 +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 : |