Mercurial > vim
annotate runtime/delmenu.vim @ 17194:f4c6c1bc5e41 v8.1.1596
patch 8.1.1596: when resizing the screen may draw popup in wrong position
commit https://github.com/vim/vim/commit/c2a43165004f944a909428e80700130745c08ed0
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jun 26 01:03:53 2019 +0200
patch 8.1.1596: when resizing the screen may draw popup in wrong position
Problem: When resizing the screen may draw popup in wrong position. (Masato
Nishihata)
Solution: Check the popup is not outside of the screen. (fixes #4592)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 26 Jun 2019 01:15:17 +0200 |
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 : |