diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2022-06-15 09:20:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-15 09:20:32 +0200 |
| commit | 504d7decbdef55d58e62217a0a54cbee2a0944cc (patch) | |
| tree | 09922dd511d071bdde73df146eca5bda4741c759 /runtime/ftplugin/m3build.vim | |
| parent | 1493efdc141f0bc0a472b60f87927b3d5ab59f5e (diff) | |
| download | rneovim-504d7decbdef55d58e62217a0a54cbee2a0944cc.tar.gz rneovim-504d7decbdef55d58e62217a0a54cbee2a0944cc.tar.bz2 rneovim-504d7decbdef55d58e62217a0a54cbee2a0944cc.zip | |
vim-patch:8c1b8cb2e0b5 (#18966)
Update runtime files
https://github.com/vim/vim/commit/8c1b8cb2e0b52d0853f85c2096a2f22dbc57a788
Diffstat (limited to 'runtime/ftplugin/m3build.vim')
| -rw-r--r-- | runtime/ftplugin/m3build.vim | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/runtime/ftplugin/m3build.vim b/runtime/ftplugin/m3build.vim index 9e1e169d38..c910eaecd0 100644 --- a/runtime/ftplugin/m3build.vim +++ b/runtime/ftplugin/m3build.vim @@ -1,21 +1,20 @@ " Vim filetype plugin file " Language: Modula-3 Makefile " Maintainer: Doug Kearns <dougkearns@gmail.com> -" Last Change: 2021 April 15 +" Last Change: 2022 June 12 if exists("b:did_ftplugin") finish endif -let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim runtime! ftplugin/m3quake.vim -if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") - let b:browsefilter = "Modula-3 Makefile (m3makefile m3overrides)\tm3makefile;m3overrides\n" .. - \ "All Files (*.*)\t*.*\n" +if (has("gui_win32") || has("gui_gtk")) && exists("b:m3quake_set_browsefilter") + let b:browsefilter = "Modula-3 Makefile (m3makefile m3overrides)\tm3makefile;m3overrides\n" .. + \ "All Files (*.*)\t*.*\n" endif let &cpo = s:cpo_save |