Mercurial > vim
annotate runtime/syntax/sshconfig.vim @ 29662:b03c47618895 v9.0.0171
patch 9.0.0171: quickfix line highlight is overruled by 'cursorline'
Commit: https://github.com/vim/vim/commit/6e5c61119a07b513a99baa9618e8182a74fd7e24
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Aug 8 16:03:06 2022 +0100
patch 9.0.0171: quickfix line highlight is overruled by 'cursorline'
Problem: Quickfix line highlight is overruled by 'cursorline'.
Solution: Reverse the combination of attributes. (closes https://github.com/vim/vim/issues/10654)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 08 Aug 2022 17:15:03 +0200 |
parents | 4ab4ef0c48b1 |
children | 5acd6f02ea35 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
3224 | 2 " Language: OpenSSH client configuration file (ssh_config) |
3 " Author: David Necas (Yeti) | |
24278 | 4 " Maintainer: Jakub Jelen <jakuje at gmail dot com> |
5 " Previous Maintainer: Dominik Fischer <d dot f dot fischer at web dot de> | |
7597
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
6 " Contributor: Leonard Ehrenfried <leonard.ehrenfried@web.de> |
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
7 " Contributor: Karsten Hopp <karsten@redhat.com> |
9860
9eaf8ef656e9
commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents:
8869
diff
changeset
|
8 " Contributor: Dean, Adam Kenneth <adam.ken.dean@hpe.com> |
24278 | 9 " Last Change: 2021 Mar 29 |
18053 | 10 " Added RemoteCommand from pull request #4809 |
19404 | 11 " Included additional keywords from Martin. |
24278 | 12 " SSH Version: 8.5p1 |
3224 | 13 " |
7 | 14 |
15 " Setup | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
16 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
17 if exists("b:current_syntax") |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
18 finish |
7 | 19 endif |
20 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9860
diff
changeset
|
21 setlocal iskeyword=_,-,a-z,A-Z,48-57 |
7 | 22 |
3224 | 23 |
24 " case on | |
25 syn case match | |
26 | |
7 | 27 |
28 " Comments | |
3224 | 29 syn match sshconfigComment "^#.*$" contains=sshconfigTodo |
30 syn match sshconfigComment "\s#.*$" contains=sshconfigTodo | |
31 | |
32 syn keyword sshconfigTodo TODO FIXME NOTE contained | |
33 | |
7 | 34 |
35 " Constants | |
8869
b73f9ed65072
commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Christian Brabandt <cb@256bit.org>
parents:
8392
diff
changeset
|
36 syn keyword sshconfigYesNo yes no ask confirm |
2034 | 37 syn keyword sshconfigYesNo any auto |
3224 | 38 syn keyword sshconfigYesNo force autoask none |
39 | |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
40 syn keyword sshconfigCipher 3des blowfish |
3224 | 41 |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
42 syn keyword sshconfigCiphers 3des-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
43 syn keyword sshconfigCiphers blowfish-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
44 syn keyword sshconfigCiphers cast128-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
45 syn keyword sshconfigCiphers arcfour |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
46 syn keyword sshconfigCiphers arcfour128 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
47 syn keyword sshconfigCiphers arcfour256 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
48 syn keyword sshconfigCiphers aes128-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
49 syn keyword sshconfigCiphers aes192-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
50 syn keyword sshconfigCiphers aes256-cbc |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
51 syn match sshconfigCiphers "\<rijndael-cbc@lysator\.liu.se\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
52 syn keyword sshconfigCiphers aes128-ctr |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
53 syn keyword sshconfigCiphers aes192-ctr |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
54 syn keyword sshconfigCiphers aes256-ctr |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
55 syn match sshconfigCiphers "\<aes128-gcm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
56 syn match sshconfigCiphers "\<aes256-gcm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
57 syn match sshconfigCiphers "\<chacha20-poly1305@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
58 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
59 syn keyword sshconfigMAC hmac-sha1 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
60 syn keyword sshconfigMAC mac-sha1-96 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
61 syn keyword sshconfigMAC mac-sha2-256 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
62 syn keyword sshconfigMAC mac-sha2-512 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
63 syn keyword sshconfigMAC mac-md5 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
64 syn keyword sshconfigMAC mac-md5-96 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
65 syn keyword sshconfigMAC mac-ripemd160 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
66 syn match sshconfigMAC "\<hmac-ripemd160@openssh\.com\>" |
3224 | 67 syn match sshconfigMAC "\<umac-64@openssh\.com\>" |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
68 syn match sshconfigMAC "\<umac-128@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
69 syn match sshconfigMAC "\<hmac-sha1-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
70 syn match sshconfigMAC "\<hmac-sha1-96-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
71 syn match sshconfigMAC "\<hmac-sha2-256-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
72 syn match sshconfigMAC "\<hmac-sha2-512-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
73 syn match sshconfigMAC "\<hmac-md5-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
74 syn match sshconfigMAC "\<hmac-md5-96-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
75 syn match sshconfigMAC "\<hmac-ripemd160-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
76 syn match sshconfigMAC "\<umac-64-etm@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
77 syn match sshconfigMAC "\<umac-128-etm@openssh\.com\>" |
3224 | 78 |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
79 syn keyword sshconfigHostKeyAlgo ssh-ed25519 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
80 syn match sshconfigHostKeyAlgo "\<ssh-ed25519-cert-v01@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
81 syn keyword sshconfigHostKeyAlgo ssh-rsa |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
82 syn keyword sshconfigHostKeyAlgo ssh-dss |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
83 syn keyword sshconfigHostKeyAlgo ecdsa-sha2-nistp256 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
84 syn keyword sshconfigHostKeyAlgo ecdsa-sha2-nistp384 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
85 syn keyword sshconfigHostKeyAlgo ecdsa-sha2-nistp521 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
86 syn match sshconfigHostKeyAlgo "\<ssh-rsa-cert-v01@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
87 syn match sshconfigHostKeyAlgo "\<ssh-dss-cert-v01@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
88 syn match sshconfigHostKeyAlgo "\<ecdsa-sha2-nistp256-cert-v01@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
89 syn match sshconfigHostKeyAlgo "\<ecdsa-sha2-nistp384-cert-v01@openssh\.com\>" |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
90 syn match sshconfigHostKeyAlgo "\<ecdsa-sha2-nistp521-cert-v01@openssh\.com\>" |
3224 | 91 |
92 syn keyword sshconfigPreferredAuth hostbased publickey password gssapi-with-mic | |
7 | 93 syn keyword sshconfigPreferredAuth keyboard-interactive |
3224 | 94 |
7 | 95 syn keyword sshconfigLogLevel QUIET FATAL ERROR INFO VERBOSE |
96 syn keyword sshconfigLogLevel DEBUG DEBUG1 DEBUG2 DEBUG3 | |
2034 | 97 syn keyword sshconfigSysLogFacility DAEMON USER AUTH AUTHPRIV LOCAL0 LOCAL1 |
98 syn keyword sshconfigSysLogFacility LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7 | |
3224 | 99 syn keyword sshconfigAddressFamily inet inet6 |
100 | |
7597
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
101 syn match sshconfigIPQoS "af1[123]" |
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
102 syn match sshconfigIPQoS "af2[123]" |
3224 | 103 syn match sshconfigIPQoS "af3[123]" |
104 syn match sshconfigIPQoS "af4[123]" | |
105 syn match sshconfigIPQoS "cs[0-7]" | |
106 syn keyword sshconfigIPQoS ef lowdelay throughput reliability | |
107 syn keyword sshconfigKbdInteractive bsdauth pam skey | |
108 | |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
109 syn keyword sshconfigKexAlgo diffie-hellman-group1-sha1 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
110 syn keyword sshconfigKexAlgo diffie-hellman-group14-sha1 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
111 syn keyword sshconfigKexAlgo diffie-hellman-group-exchange-sha1 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
112 syn keyword sshconfigKexAlgo diffie-hellman-group-exchange-sha256 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
113 syn keyword sshconfigKexAlgo ecdh-sha2-nistp256 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
114 syn keyword sshconfigKexAlgo ecdh-sha2-nistp384 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
115 syn keyword sshconfigKexAlgo ecdh-sha2-nistp521 |
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
116 syn match sshconfigKexAlgo "\<curve25519-sha256@libssh\.org\>" |
3224 | 117 |
118 syn keyword sshconfigTunnel point-to-point ethernet | |
119 | |
120 syn match sshconfigVar "%[rhplLdun]\>" | |
7 | 121 syn match sshconfigSpecial "[*?]" |
122 syn match sshconfigNumber "\d\+" | |
123 syn match sshconfigHostPort "\<\(\d\{1,3}\.\)\{3}\d\{1,3}\(:\d\+\)\?\>" | |
124 syn match sshconfigHostPort "\<\([-a-zA-Z0-9]\+\.\)\+[-a-zA-Z0-9]\{2,}\(:\d\+\)\?\>" | |
125 syn match sshconfigHostPort "\<\(\x\{,4}:\)\+\x\{,4}[:/]\d\+\>" | |
3371 | 126 syn match sshconfigHostPort "\(Host \)\@<=.\+" |
127 syn match sshconfigHostPort "\(HostName \)\@<=.\+" | |
3224 | 128 |
129 " case off | |
130 syn case ignore | |
131 | |
132 | |
7 | 133 " Keywords |
134 syn keyword sshconfigHostSect Host | |
3224 | 135 |
19404 | 136 syn keyword sshconfigMatch canonical final exec host originalhost user localuser all |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
3410
diff
changeset
|
137 |
2034 | 138 syn keyword sshconfigKeyword AddressFamily |
8869
b73f9ed65072
commit https://github.com/vim/vim/commit/939a1abe935a539f2d4c90a56cb0682cbaf3bbb0
Christian Brabandt <cb@256bit.org>
parents:
8392
diff
changeset
|
139 syn keyword sshconfigKeyword AddKeysToAgent |
3224 | 140 syn keyword sshconfigKeyword BatchMode |
141 syn keyword sshconfigKeyword BindAddress | |
19404 | 142 syn keyword sshconfigKeyword BindInterface |
7597
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
143 syn keyword sshconfigKeyword CanonicalDomains |
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
144 syn keyword sshconfigKeyword CanonicalizeFallbackLocal |
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
145 syn keyword sshconfigKeyword CanonicalizeHostname |
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
146 syn keyword sshconfigKeyword CanonicalizeMaxDots |
19404 | 147 syn keyword sshconfigKeyword CanonicalizePermittedCNAMEs |
148 syn keyword sshconfigKeyword CASignatureAlgorithms | |
8392
1bf1b88968a2
commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents:
7597
diff
changeset
|
149 syn keyword sshconfigKeyword CertificateFile |
3224 | 150 syn keyword sshconfigKeyword ChallengeResponseAuthentication |
151 syn keyword sshconfigKeyword CheckHostIP | |
152 syn keyword sshconfigKeyword Ciphers | |
153 syn keyword sshconfigKeyword ClearAllForwardings | |
154 syn keyword sshconfigKeyword Compression | |
155 syn keyword sshconfigKeyword ConnectTimeout | |
156 syn keyword sshconfigKeyword ConnectionAttempts | |
157 syn keyword sshconfigKeyword ControlMaster | |
158 syn keyword sshconfigKeyword ControlPath | |
159 syn keyword sshconfigKeyword ControlPersist | |
160 syn keyword sshconfigKeyword DynamicForward | |
161 syn keyword sshconfigKeyword EnableSSHKeysign | |
162 syn keyword sshconfigKeyword EscapeChar | |
163 syn keyword sshconfigKeyword ExitOnForwardFailure | |
19404 | 164 syn keyword sshconfigKeyword FingerprintHash |
3224 | 165 syn keyword sshconfigKeyword ForwardAgent |
166 syn keyword sshconfigKeyword ForwardX11 | |
167 syn keyword sshconfigKeyword ForwardX11Timeout | |
2034 | 168 syn keyword sshconfigKeyword ForwardX11Trusted |
169 syn keyword sshconfigKeyword GSSAPIAuthentication | |
3224 | 170 syn keyword sshconfigKeyword GSSAPIDelegateCredentials |
171 syn keyword sshconfigKeyword GatewayPorts | |
2034 | 172 syn keyword sshconfigKeyword GlobalKnownHostsFile |
3224 | 173 syn keyword sshconfigKeyword HashKnownHosts |
174 syn keyword sshconfigKeyword HostKeyAlgorithms | |
175 syn keyword sshconfigKeyword HostKeyAlias | |
176 syn keyword sshconfigKeyword HostName | |
177 syn keyword sshconfigKeyword HostbasedAuthentication | |
24278 | 178 syn keyword sshconfigKeyword HostbasedAcceptedAlgorithms |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
3410
diff
changeset
|
179 syn keyword sshconfigKeyword HostbasedKeyTypes |
3224 | 180 syn keyword sshconfigKeyword IPQoS |
181 syn keyword sshconfigKeyword IdentitiesOnly | |
19404 | 182 syn keyword sshconfigKeyword IdentityAgent |
3224 | 183 syn keyword sshconfigKeyword IdentityFile |
7597
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
184 syn keyword sshconfigKeyword IgnoreUnknown |
10498
883396809b45
commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents:
10051
diff
changeset
|
185 syn keyword sshconfigKeyword Include |
7597
3012eaddb6b2
commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
186 syn keyword sshconfigKeyword IPQoS |
3224 | 187 syn keyword sshconfigKeyword KbdInteractiveAuthentication |
188 syn keyword sshconfigKeyword KbdInteractiveDevices | |
189 syn keyword sshconfigKeyword KexAlgorithms | |
24278 | 190 syn keyword sshconfigKeyword KnownHostsCommand |
3224 | 191 syn keyword sshconfigKeyword LocalCommand |
192 syn keyword sshconfigKeyword LocalForward | |
193 syn keyword sshconfigKeyword LogLevel | |
24278 | 194 syn keyword sshconfigKeyword LogVerbose |
2034 | 195 syn keyword sshconfigKeyword MACs |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
3410
diff
changeset
|
196 syn keyword sshconfigKeyword Match |
2034 | 197 syn keyword sshconfigKeyword NoHostAuthenticationForLocalhost |
198 syn keyword sshconfigKeyword NumberOfPasswordPrompts | |
3224 | 199 syn keyword sshconfigKeyword PKCS11Provider |
200 syn keyword sshconfigKeyword PasswordAuthentication | |
2034 | 201 syn keyword sshconfigKeyword PermitLocalCommand |
24278 | 202 syn keyword sshconfigKeyword PermitRemoteOpen |
3224 | 203 syn keyword sshconfigKeyword Port |
204 syn keyword sshconfigKeyword PreferredAuthentications | |
205 syn keyword sshconfigKeyword ProxyCommand | |
9860
9eaf8ef656e9
commit https://github.com/vim/vim/commit/0952131376a517fc12dc5ae908a97018b4ee23f0
Christian Brabandt <cb@256bit.org>
parents:
8869
diff
changeset
|
206 syn keyword sshconfigKeyword ProxyJump |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
3410
diff
changeset
|
207 syn keyword sshconfigKeyword ProxyUseFDPass |
24278 | 208 syn keyword sshconfigKeyword PubkeyAcceptedAlgorithms |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
3410
diff
changeset
|
209 syn keyword sshconfigKeyword PubkeyAcceptedKeyTypes |
3224 | 210 syn keyword sshconfigKeyword PubkeyAuthentication |
211 syn keyword sshconfigKeyword RekeyLimit | |
18053 | 212 syn keyword sshconfigKeyword RemoteCommand |
3224 | 213 syn keyword sshconfigKeyword RemoteForward |
214 syn keyword sshconfigKeyword RequestTTY | |
19404 | 215 syn keyword sshconfigKeyword RevokedHostKeys |
216 syn keyword sshconfigKeyword SecurityKeyProvider | |
3224 | 217 syn keyword sshconfigKeyword SendEnv |
218 syn keyword sshconfigKeyword ServerAliveCountMax | |
219 syn keyword sshconfigKeyword ServerAliveInterval | |
220 syn keyword sshconfigKeyword SmartcardDevice | |
19404 | 221 syn keyword sshconfigKeyword SetEnv |
222 syn keyword sshconfigKeyword StreamLocalBindMask | |
223 syn keyword sshconfigKeyword StreamLocalBindUnlink | |
3224 | 224 syn keyword sshconfigKeyword StrictHostKeyChecking |
19404 | 225 syn keyword sshconfigKeyword SyslogFacility |
3224 | 226 syn keyword sshconfigKeyword TCPKeepAlive |
227 syn keyword sshconfigKeyword Tunnel | |
228 syn keyword sshconfigKeyword TunnelDevice | |
229 syn keyword sshconfigKeyword UseBlacklistedKeys | |
19404 | 230 syn keyword sshconfigKeyword UpdateHostKeys |
3224 | 231 syn keyword sshconfigKeyword User |
2034 | 232 syn keyword sshconfigKeyword UserKnownHostsFile |
3224 | 233 syn keyword sshconfigKeyword VerifyHostKeyDNS |
234 syn keyword sshconfigKeyword VisualHostKey | |
2034 | 235 syn keyword sshconfigKeyword XAuthLocation |
7 | 236 |
19404 | 237 " Deprecated/ignored/remove/unsupported keywords |
238 | |
239 syn keyword sshConfigDeprecated Cipher | |
240 syn keyword sshconfigDeprecated GSSAPIClientIdentity | |
241 syn keyword sshconfigDeprecated GSSAPIKeyExchange | |
242 syn keyword sshconfigDeprecated GSSAPIRenewalForcesRekey | |
243 syn keyword sshconfigDeprecated GSSAPIServerIdentity | |
244 syn keyword sshconfigDeprecated GSSAPITrustDNS | |
245 syn keyword sshconfigDeprecated GSSAPITrustDns | |
246 syn keyword sshconfigDeprecated Protocol | |
247 syn keyword sshconfigDeprecated RSAAuthentication | |
248 syn keyword sshconfigDeprecated RhostsRSAAuthentication | |
249 syn keyword sshconfigDeprecated CompressionLevel | |
250 syn keyword sshconfigDeprecated UseRoaming | |
251 syn keyword sshconfigDeprecated UsePrivilegedPort | |
252 | |
7 | 253 " Define the default highlighting |
254 | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
255 hi def link sshconfigComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
256 hi def link sshconfigTodo Todo |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
257 hi def link sshconfigHostPort sshconfigConstant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
258 hi def link sshconfigNumber sshconfigConstant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
259 hi def link sshconfigConstant Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
260 hi def link sshconfigYesNo sshconfigEnum |
19404 | 261 hi def link sshconfigCipher sshconfigDeprecated |
262 hi def link sshconfigCiphers sshconfigEnum | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
263 hi def link sshconfigMAC sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
264 hi def link sshconfigHostKeyAlgo sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
265 hi def link sshconfigLogLevel sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
266 hi def link sshconfigSysLogFacility sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
267 hi def link sshconfigAddressFamily sshconfigEnum |
19404 | 268 hi def link sshconfigIPQoS sshconfigEnum |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
269 hi def link sshconfigKbdInteractive sshconfigEnum |
19404 | 270 hi def link sshconfigKexAlgo sshconfigEnum |
271 hi def link sshconfigTunnel sshconfigEnum | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
272 hi def link sshconfigPreferredAuth sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
273 hi def link sshconfigVar sshconfigEnum |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
274 hi def link sshconfigEnum Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
275 hi def link sshconfigSpecial Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
276 hi def link sshconfigKeyword Keyword |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
277 hi def link sshconfigHostSect Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
278 hi def link sshconfigMatch Type |
19404 | 279 hi def link sshconfigDeprecated Error |
7 | 280 |
281 let b:current_syntax = "sshconfig" | |
3224 | 282 |
283 " vim:set ts=8 sw=2 sts=2: |