Mercurial > vim
annotate runtime/syntax/wget.vim @ 34211:f9b706e23b10 v9.1.0054
patch 9.1.0054: 'linebreak' may still apply to leading whitespace
Commit: https://github.com/vim/vim/commit/703f9bc943a29d947869b5cb0370be2ac42d5ac9
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu Jan 25 21:27:13 2024 +0100
patch 9.1.0054: 'linebreak' may still apply to leading whitespace
Problem: 'linebreak' may still apply to leading whitespace
(VanaIgr)
Solution: Compare pointers instead of virtual columns.
(zeertzjq)
related: neovim/neovim#27180
closes: #13915
Co-authored-by: VanaIgr <vanaigranov@gmail.com>
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 25 Jan 2024 21:45:02 +0100 |
parents | 9a846ba607bb |
children |
rev | line source |
---|---|
5277 | 1 " Vim syntax 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) |
5277 | 3 " Maintainer: Doug Kearns <dougkearns@gmail.com> |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
4 " Last Change: 2023 Nov 05 |
28777 | 5 |
6 " GNU Wget 1.21 built on linux-gnu. | |
7 | 7 |
5277 | 8 if exists("b:current_syntax") |
7 | 9 finish |
10 endif | |
11 | |
5277 | 12 let s:cpo_save = &cpo |
13 set cpo&vim | |
14 | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
15 syn match wgetComment "#.*" contains=wgetTodo contained |
7 | 16 |
444 | 17 syn keyword wgetTodo TODO NOTE FIXME XXX contained |
7 | 18 |
5277 | 19 syn region wgetString start=+"+ skip=+\\\\\|\\"+ end=+"+ contained oneline |
20 syn region wgetString start=+'+ skip=+\\\\\|\\'+ end=+'+ contained oneline | |
444 | 21 |
7 | 22 syn case ignore |
28777 | 23 |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
24 syn keyword wgetBoolean on off yes no contained |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
25 syn keyword wgetNumber inf contained |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
26 syn match wgetNumber "\<\d\+>" contained |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
27 syn match wgetQuota "\<\d\+[kmgt]\>" contained |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
28 syn match wgetTime "\<\d\+[smhdw]\>" contained |
7 | 29 |
5277 | 30 "{{{ Commands |
28777 | 31 let s:commands =<< trim EOL |
32 accept | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
33 accept-regex |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
34 add-host-dir |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
35 adjust-extension |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
36 always-rest |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
37 ask-password |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
38 auth-no-challenge |
28777 | 39 background |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
40 backup-converted |
28777 | 41 backups |
42 base | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
43 bind-address |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
44 bind-dns-address |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
45 body-data |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
46 body-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
47 ca-certificate |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
48 ca-directory |
28777 | 49 cache |
50 certificate | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
51 certificate-type |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
52 check-certificate |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
53 choose-config |
28777 | 54 ciphers |
55 compression | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
56 connect-timeout |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
57 content-disposition |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
58 content-on-error |
28777 | 59 continue |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
60 convert-file-only |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
61 convert-links |
28777 | 62 cookies |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
63 crl-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
64 cut-dirs |
28777 | 65 debug |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
66 default-page |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
67 delete-after |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
68 dns-cache |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
69 dns-servers |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
70 dns-timeout |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
71 dir-prefix |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
72 dir-struct |
28777 | 73 domains |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
74 dot-bytes |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
75 dots-in-line |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
76 dot-spacing |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
77 dot-style |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
78 egd-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
79 exclude-directories |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
80 exclude-domains |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
81 follow-ftp |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
82 follow-tags |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
83 force-html |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
84 ftp-passwd |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
85 ftp-password |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
86 ftp-user |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
87 ftp-proxy |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
88 ftps-clear-data-connection |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
89 ftps-fallback-to-ftp |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
90 ftps-implicit |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
91 ftps-resume-ssl |
28777 | 92 hsts |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
93 hsts-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
94 ftp-stmlf |
28777 | 95 glob |
96 header | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
97 html-extension |
28777 | 98 htmlify |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
99 http-keep-alive |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
100 http-passwd |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
101 http-password |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
102 http-proxy |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
103 https-proxy |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
104 https-only |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
105 http-user |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
106 if-modified-since |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
107 ignore-case |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
108 ignore-length |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
109 ignore-tags |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
110 include-directories |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
111 inet4-only |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
112 inet6-only |
28777 | 113 input |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
114 input-meta-link |
28777 | 115 iri |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
116 keep-bad-hash |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
117 keep-session-cookies |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
118 kill-longer |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
119 limit-rate |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
120 load-cookies |
28777 | 121 locale |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
122 local-encoding |
28777 | 123 logfile |
124 login | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
125 max-redirect |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
126 metalink-index |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
127 metalink-over-http |
28777 | 128 method |
129 mirror | |
130 netrc | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
131 no-clobber |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
132 no-config |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
133 no-parent |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
134 no-proxy |
28777 | 135 numtries |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
136 output-document |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
137 page-requisites |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
138 passive-ftp |
28777 | 139 passwd |
140 password | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
141 pinned-pubkey |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
142 post-data |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
143 post-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
144 prefer-family |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
145 preferred-location |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
146 preserve-permissions |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
147 private-key |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
148 private-key-type |
28777 | 149 progress |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
150 protocol-directories |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
151 proxy-passwd |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
152 proxy-password |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
153 proxy-user |
28777 | 154 quiet |
155 quota | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
156 random-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
157 random-wait |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
158 read-timeout |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
159 rec-level |
28777 | 160 recursive |
161 referer | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
162 regex-type |
28777 | 163 reject |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
164 rejected-log |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
165 reject-regex |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
166 relative-only |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
167 remote-encoding |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
168 remove-listing |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
169 report-speed |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
170 restrict-file-names |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
171 retr-symlinks |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
172 retry-connrefused |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
173 retry-on-host-error |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
174 retry-on-http-error |
28777 | 175 robots |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
176 save-cookies |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
177 save-headers |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
178 secure-protocol |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
179 server-response |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
180 show-all-dns-entries |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
181 show-progress |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
182 simple-host-check |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
183 span-hosts |
28777 | 184 spider |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
185 start-pos |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
186 strict-comments |
28777 | 187 sslcertfile |
188 sslcertkey | |
189 timeout | |
190 timestamping | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
191 use-server-timestamps |
28777 | 192 tries |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
193 trust-server-names |
28777 | 194 unlink |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
195 use-askpass |
28777 | 196 user |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
197 use-proxy |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
198 user-agent |
28777 | 199 verbose |
200 wait | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
201 wait-retry |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
202 warc-cdx |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
203 warc-cdx-dedup |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
204 warc-compression |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
205 warc-digests |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
206 warc-file |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
207 warc-header |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
208 warc-keep-log |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
209 warc-max-size |
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
210 warc-temp-dir |
28777 | 211 wdebug |
212 xattr | |
213 EOL | |
5277 | 214 "}}} |
7 | 215 |
5277 | 216 for cmd in s:commands |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
217 exe 'syn match wgetCommand "\<' .. substitute(cmd, '-', '[-_]\\=', "g") .. '\>" nextgroup=wgetAssignmentOperator skipwhite contained' |
5277 | 218 endfor |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
219 unlet s:commands |
28777 | 220 |
5277 | 221 syn case match |
222 | |
33729
9a846ba607bb
runtime(wget): Update for Wget2 2.1.0 (#13497)
Christian Brabandt <cb@256bit.org>
parents:
28777
diff
changeset
|
223 syn match wgetLineStart "^" nextgroup=wgetCommand,wgetComment skipwhite |
5277 | 224 syn match wgetAssignmentOperator "=" nextgroup=wgetString,wgetBoolean,wgetNumber,wgetQuota,wgetTime skipwhite contained |
225 | |
226 hi def link wgetAssignmentOperator Special | |
227 hi def link wgetBoolean Boolean | |
228 hi def link wgetCommand Identifier | |
229 hi def link wgetComment Comment | |
230 hi def link wgetNumber Number | |
231 hi def link wgetQuota Number | |
232 hi def link wgetString String | |
28777 | 233 hi def link wgetTime Number |
5277 | 234 hi def link wgetTodo Todo |
7 | 235 |
236 let b:current_syntax = "wget" | |
444 | 237 |
5277 | 238 let &cpo = s:cpo_save |
239 unlet s:cpo_save | |
240 | |
241 " vim: ts=8 fdm=marker: |