diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-08-05 12:23:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-05 12:23:41 +0200 |
commit | 21f5aee77756cb63a240c2384d438208eaecaf62 (patch) | |
tree | b44aeb170927f33922d12a830a0883b2bd954fea /runtime | |
parent | 7ebcb9b3332e4dcc0bca7a105923555c390fb6b5 (diff) | |
download | rneovim-21f5aee77756cb63a240c2384d438208eaecaf62.tar.gz rneovim-21f5aee77756cb63a240c2384d438208eaecaf62.tar.bz2 rneovim-21f5aee77756cb63a240c2384d438208eaecaf62.zip |
vim-patch:9.0.0141: "delmenu" does not remove autocmmands (#19646)
Problem: "delmenu" does not remove autocmmands. Running menu test function
alone fails.
Solution: Delete autocommands Make sure there is at least one menu.
(closes vim/vim#10848)
https://github.com/vim/vim/commit/206fce307b265f7f6c6290b623a80c1d846dd131
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/delmenu.vim | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/delmenu.vim b/runtime/delmenu.vim index 040cc09aa9..ef663c73b4 100644 --- a/runtime/delmenu.vim +++ b/runtime/delmenu.vim @@ -7,6 +7,31 @@ aunmenu * tlunmenu * +if exists('#SetupLazyloadMenus') + au! SetupLazyloadMenus + augroup! SetupLazyloadMenus +endif + +if exists('#buffer_list') + au! buffer_list + augroup! buffer_list +endif + +if exists('#LoadBufferMenu') + au! LoadBufferMenu + augroup! LoadBufferMenu +endif + +if exists('#spellmenu') + au! spellmenu + augroup! spellmenu +endif + +if exists('#SpellPopupMenu') + au! SpellPopupMenu + augroup! SpellPopupMenu +endif + unlet! g:did_install_default_menus unlet! g:did_install_syntax_menu |