diff options
author | Christian Clason <c.clason@uni-graz.at> | 2023-11-09 18:19:15 +0100 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2023-11-09 19:17:11 +0100 |
commit | ae8ca79920a8d0e928ac1502a10d1d063a06cae5 (patch) | |
tree | 596a03f20b8aad3728dfbeaf362c76d9a13ca6d9 /runtime/ftplugin | |
parent | 267c346e2cd10081bfebe86be59f137a1b7470e5 (diff) | |
download | rneovim-ae8ca79920a8d0e928ac1502a10d1d063a06cae5.tar.gz rneovim-ae8ca79920a8d0e928ac1502a10d1d063a06cae5.tar.bz2 rneovim-ae8ca79920a8d0e928ac1502a10d1d063a06cae5.zip |
vim-patch:d56f15caf602
runtime(wget): Update for Wget2 2.1.0 (vim/vim#13497)
https://github.com/vim/vim/commit/d56f15caf602a061f5f9f0a3c6a4537ab2dc6acc
Co-authored-by: dkearns <dougkearns@gmail.com>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/wget.vim | 4 | ||||
-rw-r--r-- | runtime/ftplugin/wget2.vim | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/runtime/ftplugin/wget.vim b/runtime/ftplugin/wget.vim index 7a10221824..db3b62191e 100644 --- a/runtime/ftplugin/wget.vim +++ b/runtime/ftplugin/wget.vim @@ -1,5 +1,5 @@ " Vim filetype plugin file -" Language: Wget configuration file (/etc/wgetrc ~/.wgetrc) +" Language: Wget configuration file (/etc/wgetrc ~/.wgetrc) " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2022 Apr 28 @@ -18,7 +18,7 @@ setlocal formatoptions-=t formatoptions+=croql let b:undo_ftplugin = "setl fo< com< cms<" if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") - let b:browsefilter = "Wget Configuration File (wgetrc, .wgetrc)\twgetrc;.wgetrc\n" . + let b:browsefilter = "Wget Configuration File (wgetrc, .wgetrc)\twgetrc;.wgetrc\n" .. \ "All Files (*.*)\t*.*\n" let b:undo_ftplugin ..= " | unlet! b:browsefilter" endif diff --git a/runtime/ftplugin/wget2.vim b/runtime/ftplugin/wget2.vim index a6845f6df5..8cfcd514e5 100644 --- a/runtime/ftplugin/wget2.vim +++ b/runtime/ftplugin/wget2.vim @@ -1,5 +1,5 @@ " Vim filetype plugin file -" Language: Wget2 configuration file (/etc/wget2rc ~/.wget2rc) +" Language: Wget2 configuration file (/etc/wget2rc ~/.wget2rc) " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2022 Apr 28 @@ -18,7 +18,7 @@ setlocal formatoptions-=t formatoptions+=croql let b:undo_ftplugin = "setl fo< com< cms<" if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") - let b:browsefilter = "Wget2 Configuration File (wget2rc, .wget2rc)\twget2rc;.wget2rc\n" . + let b:browsefilter = "Wget2 Configuration File (wget2rc, .wget2rc)\twget2rc;.wget2rc\n" .. \ "All Files (*.*)\t*.*\n" let b:undo_ftplugin ..= " | unlet! b:browsefilter" endif |