Mercurial > vim
annotate runtime/delmenu.vim @ 10722:7598ce51bf2a v8.0.0251
patch 8.0.0251: not easy to select Python 2 or 3
commit https://github.com/vim/vim/commit/f42dd3c3901ea0ba38e67a616aea9953cae81b8d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 28 16:06:38 2017 +0100
patch 8.0.0251: not easy to select Python 2 or 3
Problem: It is not so easy to write a script that works with both Python 2
and Python 3, even when the Python code works with both.
Solution: Add 'pyxversion', :pyx, etc. (Marc Weber, Ken Takata)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 28 Jan 2017 16:15:04 +0100 |
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 : |