diff options
Diffstat (limited to '')
-rw-r--r-- | runtime/ftplugin/mf.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/ftplugin/mf.vim b/runtime/ftplugin/mf.vim index 5c8c571..7e7dfa7 100644 --- a/runtime/ftplugin/mf.vim +++ b/runtime/ftplugin/mf.vim @@ -5,6 +5,7 @@ vim9script # Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com> # Former Maintainers: Nikolai Weibull <now@bitwi.se> # Latest Revision: 2022 Aug 12 +# 2024 Jan 14 by Vim Project (browsefilter) if exists("b:did_ftplugin") finish @@ -75,7 +76,11 @@ endif if (has('gui_win32') || has('gui_gtk')) && !exists('b:browsefilter') b:browsefilter = "METAFONT Source Files (*.mf)\t*.mf\n" - .. "All Files (*.*)\t*.*\n" + if has("win32") + b:browsefilter ..= "All Files (*.*)\t*\n" + else + b:browsefilter ..= "All Files (*)\t*\n" + endif b:undo_ftplugin ..= ' | unlet! b:browsefilter' endif |