annotate runtime/ftplugin/wget.vim @ 34147:efe7982ac118

Added tag v9.1.0034 for changeset 23bb675796f066d27bdcdc42afdcedfe2d55e120
author Christian Brabandt <cb@256bit.org>
date Tue, 16 Jan 2024 17:30:11 +0100
parents 8ae680be2a51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
33729
9a846ba607bb runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents: 28777
diff changeset
2 " Language: Wget configuration file (/etc/wgetrc ~/.wgetrc)
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 " Maintainer: Doug Kearns <dougkearns@gmail.com>
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
4 " Last Change: 2024 Jan 14
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 if exists("b:did_ftplugin")
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 finish
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 endif
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let b:did_ftplugin = 1
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let s:cpo_save = &cpo
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 set cpo&vim
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 setlocal comments=:#,://
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 setlocal commentstring=#\ %s
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 setlocal formatoptions-=t formatoptions+=croql
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 let b:undo_ftplugin = "setl fo< com< cms<"
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
34134
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
21 let b:browsefilter = "Wget Configuration File (wgetrc, .wgetrc)\twgetrc;.wgetrc\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
22 if has("win32")
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
23 let b:browsefilter ..= "All Files (*.*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
24 else
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
25 let b:browsefilter ..= "All Files (*)\t*\n"
8ae680be2a51 runtime(ftplugin): Use "*" browsefilter pattern to match "All Files"
Christian Brabandt <cb@256bit.org>
parents: 33729
diff changeset
26 endif
28777
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 let b:undo_ftplugin ..= " | unlet! b:browsefilter"
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 endif
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
30 let &cpo = s:cpo_save
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
31 unlet s:cpo_save
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
32
b96ceb97e896 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
33 " vim: nowrap sw=2 sts=2 ts=8