diff options
Diffstat (limited to '')
-rw-r--r-- | runtime/ftplugin/mp.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/ftplugin/mp.vim b/runtime/ftplugin/mp.vim index bc5116e..87ad9f8 100644 --- a/runtime/ftplugin/mp.vim +++ b/runtime/ftplugin/mp.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 @@ -84,7 +85,11 @@ endif if (has('gui_win32') || has('gui_gtk')) && !exists('b:browsefilter') b:browsefilter = "MetaPost Source Files (*.mp)\t*.mp\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 |