From 504d7decbdef55d58e62217a0a54cbee2a0944cc Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Wed, 15 Jun 2022 09:20:32 +0200 Subject: vim-patch:8c1b8cb2e0b5 (#18966) Update runtime files https://github.com/vim/vim/commit/8c1b8cb2e0b52d0853f85c2096a2f22dbc57a788 --- runtime/ftplugin/m3build.vim | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'runtime/ftplugin/m3build.vim') 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 -" 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 -- cgit