Mercurial > vim
annotate runtime/delmenu.vim @ 14517:a28fb81c9ecf v8.1.0272
patch 8.1.0272: options test fails if temp var ends in slash
commit https://github.com/vim/vim/commit/f53c692240851f71b930e80a0b0b5d4cfcc1b4a3
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Aug 11 17:53:04 2018 +0200
patch 8.1.0272: options test fails if temp var ends in slash
Problem: Options test fails if temp var ends in slash. (Tom Briden)
Solution: Check for optional slash. (closes https://github.com/vim/vim/issues/3308)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 11 Aug 2018 18:00:06 +0200 |
parents | 3fc0f57ecb91 |
children | 405309f9dd13 |
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 * | |
8 | |
9 silent! unlet did_install_default_menus | |
10 silent! unlet did_install_syntax_menu | |
11 if exists("did_menu_trans") | |
12 menutrans clear | |
13 unlet did_menu_trans | |
14 endif | |
15 | |
16 silent! unlet find_help_dialog | |
17 | |
18 silent! unlet menutrans_help_dialog | |
19 silent! unlet menutrans_path_dialog | |
20 silent! unlet menutrans_tags_dialog | |
21 silent! unlet menutrans_textwidth_dialog | |
22 silent! unlet menutrans_fileformat_dialog | |
23 silent! unlet menutrans_no_file | |
24 | |
25 " vim: set sw=2 : |