annotate runtime/syntax/sshdconfig.vim @ 35172:c98f002b1fe4 default tip

runtime(doc): fix typo in usr_52.txt Commit: https://github.com/vim/vim/commit/b7258738f80f26be302a84a99f968b3bdc2f29bb Author: Christian Brabandt <cb@256bit.org> Date: Sun May 12 19:04:47 2024 +0200 runtime(doc): fix typo in usr_52.txt fixes: https://github.com/vim/vim/issues/14758 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 12 May 2024 19:15:08 +0200
parents 300525584c40
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim syntax file
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
2 " Language: OpenSSH server configuration file (sshd_config)
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
3 " Author: David Necas (Yeti)
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
4 " Maintainer: Jakub Jelen <jakuje at gmail dot com>
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
5 " Previous Maintainer: Dominik Fischer <d dot f dot fischer at web dot de>
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
6 " Contributor: Thilo Six
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
7 " Contributor: Leonard Ehrenfried <leonard.ehrenfried@web.de>
7597
3012eaddb6b2 commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
8 " Contributor: Karsten Hopp <karsten@redhat.com>
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
9 " Originally: 2009-07-09
31139
20cf2080f1ee Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 31028
diff changeset
10 " Last Change: 2022 Nov 10
24278
4ab4ef0c48b1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23047
diff changeset
11 " SSH Version: 8.5p1
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
12 "
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
13
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 " Setup
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 8392
diff changeset
15 " quit when a syntax file was already loaded
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 8392
diff changeset
16 if exists("b:current_syntax")
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 8392
diff changeset
17 finish
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 8392
diff changeset
20 setlocal iskeyword=_,-,a-z,A-Z,48-57
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
21
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
22
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
23 " case on
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
24 syn case match
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
25
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
26
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
27 " Comments
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
28 syn match sshdconfigComment "^#.*$" contains=sshdconfigTodo
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
29 syn match sshdconfigComment "\s#.*$" contains=sshdconfigTodo
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
30
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
31 syn keyword sshdconfigTodo TODO FIXME NOTE contained
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 " Constants
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
34 syn keyword sshdconfigYesNo yes no none
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
35
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
36 syn keyword sshdconfigAddressFamily any inet inet6
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
37
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
38 syn keyword sshdconfigPrivilegeSeparation sandbox
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
39
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
40 syn keyword sshdconfigTcpForwarding local remote
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
41
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
42 syn keyword sshdconfigRootLogin prohibit-password without-password forced-commands-only
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
43
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
44 syn keyword sshdconfigCiphers 3des-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
45 syn keyword sshdconfigCiphers blowfish-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
46 syn keyword sshdconfigCiphers cast128-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
47 syn keyword sshdconfigCiphers arcfour
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
48 syn keyword sshdconfigCiphers arcfour128
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
49 syn keyword sshdconfigCiphers arcfour256
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
50 syn keyword sshdconfigCiphers aes128-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
51 syn keyword sshdconfigCiphers aes192-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
52 syn keyword sshdconfigCiphers aes256-cbc
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
53 syn match sshdconfigCiphers "\<rijndael-cbc@lysator\.liu.se\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
54 syn keyword sshdconfigCiphers aes128-ctr
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
55 syn keyword sshdconfigCiphers aes192-ctr
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
56 syn keyword sshdconfigCiphers aes256-ctr
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
57 syn match sshdconfigCiphers "\<aes128-gcm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
58 syn match sshdconfigCiphers "\<aes256-gcm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
59 syn match sshdconfigCiphers "\<chacha20-poly1305@openssh\.com\>"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
60
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
61 syn keyword sshdconfigMAC hmac-sha1
31028
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
62 syn keyword sshdconfigMAC hmac-sha1-96
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
63 syn keyword sshdconfigMAC hmac-sha2-256
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
64 syn keyword sshdconfigMAC hmac-sha2-512
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
65 syn keyword sshdconfigMAC hmac-md5
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
66 syn keyword sshdconfigMAC hmac-md5-96
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
67 syn match sshdconfigMAC "\<hmac-ripemd160\%(@openssh\.com\)\?\>"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
68 syn match sshdconfigMAC "\<umac-64@openssh\.com\>"
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
69 syn match sshdconfigMAC "\<umac-128@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
70 syn match sshdconfigMAC "\<hmac-sha1-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
71 syn match sshdconfigMAC "\<hmac-sha1-96-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
72 syn match sshdconfigMAC "\<hmac-sha2-256-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
73 syn match sshdconfigMAC "\<hmac-sha2-512-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
74 syn match sshdconfigMAC "\<hmac-md5-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
75 syn match sshdconfigMAC "\<hmac-md5-96-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
76 syn match sshdconfigMAC "\<hmac-ripemd160-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
77 syn match sshdconfigMAC "\<umac-64-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
78 syn match sshdconfigMAC "\<umac-128-etm@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
79
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
80 syn keyword sshdconfigHostKeyAlgo ssh-ed25519
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
81 syn match sshdconfigHostKeyAlgo "\<ssh-ed25519-cert-v01@openssh\.com\>"
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
82 syn match sshdconfigHostKeyAlgo "\<sk-ssh-ed25519@openssh\.com\>"
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
83 syn match sshdconfigHostKeyAlgo "\<sk-ssh-ed25519-cert-v01@openssh\.com\>"
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
84 syn keyword sshdconfigHostKeyAlgo ssh-rsa
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
85 syn keyword sshdconfigHostKeyAlgo rsa-sha2-256
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
86 syn keyword sshdconfigHostKeyAlgo rsa-sha2-512
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
87 syn keyword sshdconfigHostKeyAlgo ssh-dss
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
88 syn keyword sshdconfigHostKeyAlgo ecdsa-sha2-nistp256
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
89 syn keyword sshdconfigHostKeyAlgo ecdsa-sha2-nistp384
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
90 syn keyword sshdconfigHostKeyAlgo ecdsa-sha2-nistp521
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
91 syn match sshdconfigHostKeyAlgo "\<ssh-rsa-cert-v01@openssh\.com\>"
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
92 syn match sshdconfigHostKeyAlgo "\<rsa-sha2-256-cert-v01@openssh\.com\>"
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
93 syn match sshdconfigHostKeyAlgo "\<rsa-sha2-512-cert-v01@openssh\.com\>"
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
94 syn match sshdconfigHostKeyAlgo "\<ssh-dss-cert-v01@openssh\.com\>"
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
95 syn match sshdconfigHostKeyAlgo "\<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
96 syn match sshdconfigHostKeyAlgo "\<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
97 syn match sshdconfigHostKeyAlgo "\<ecdsa-sha2-nistp521-cert-v01@openssh\.com\>"
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
98 syn match sshdconfigHostKeyAlgo "\<sk-ecdsa-sha2-nistp256@openssh\.com\>"
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
99 syn match sshdconfigHostKeyAlgo "\<sk-ecdsa-sha2-nistp256-cert-v01@openssh\.com\>"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
100
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
101 syn keyword sshdconfigRootLogin prohibit-password without-password forced-commands-only
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
102
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
103 syn keyword sshdconfigLogLevel QUIET FATAL ERROR INFO VERBOSE
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
104 syn keyword sshdconfigLogLevel DEBUG DEBUG1 DEBUG2 DEBUG3
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
105 syn keyword sshdconfigSysLogFacility DAEMON USER AUTH AUTHPRIV LOCAL0 LOCAL1
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
106 syn keyword sshdconfigSysLogFacility LOCAL2 LOCAL3 LOCAL4 LOCAL5 LOCAL6 LOCAL7
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
107
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
108 syn keyword sshdconfigCompression delayed
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
109
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
110 syn match sshdconfigIPQoS "\<af[1-4][1-3]\>"
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
111 syn match sshdconfigIPQoS "\<cs[0-7]\>"
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
112 syn keyword sshdconfigIPQoS ef le lowdelay throughput reliability
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
113
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
114 syn keyword sshdconfigKexAlgo diffie-hellman-group1-sha1
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
115 syn keyword sshdconfigKexAlgo diffie-hellman-group14-sha1
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
116 syn keyword sshdconfigKexAlgo diffie-hellman-group14-sha256
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
117 syn keyword sshdconfigKexAlgo diffie-hellman-group16-sha512
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
118 syn keyword sshdconfigKexAlgo diffie-hellman-group18-sha512
8392
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
119 syn keyword sshdconfigKexAlgo diffie-hellman-group-exchange-sha1
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
120 syn keyword sshdconfigKexAlgo diffie-hellman-group-exchange-sha256
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
121 syn keyword sshdconfigKexAlgo ecdh-sha2-nistp256
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
122 syn keyword sshdconfigKexAlgo ecdh-sha2-nistp384
1bf1b88968a2 commit https://github.com/vim/vim/commit/328da0dcb7be34b594725eef6dc98d3ea6516d69
Christian Brabandt <cb@256bit.org>
parents: 7597
diff changeset
123 syn keyword sshdconfigKexAlgo ecdh-sha2-nistp521
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
124 syn match sshdconfigKexAlgo "\<curve25519-sha256\%(@libssh\.org\)\?\>"
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
125 syn match sshdconfigKexAlgo "\<sntrup4591761x25519-sha512@tinyssh\.org\>"
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
126 syn match sshdconfigKexAlgo "\<sntrup761x25519-sha512@openssh\.com\>"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
127
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
128 syn keyword sshdconfigTunnel point-to-point ethernet
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
129
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
130 syn keyword sshdconfigSubsystem internal-sftp
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
131
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
132 syn match sshdconfigVar "%[CDFfhiKksTtUu]\>"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
133 syn match sshdconfigVar "%%"
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
134
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
135 syn match sshdconfigSpecial "[*?]"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
136
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
137 syn match sshdconfigNumber "\<\d\+\>"
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
138 syn match sshdconfigHostPort "\<\(\d\{1,3}\.\)\{3}\d\{1,3}\(:\d\+\)\?\>"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
139 syn match sshdconfigHostPort "\<\([-a-zA-Z0-9]\+\.\)\+[-a-zA-Z0-9]\{2,}\(:\d\+\)\?\>"
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
140 " FIXME: this matches quite a few things which are NOT valid IPv6 addresses
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
141 syn match sshdconfigHostPort "\<\(\x\{,4}:\)\+\x\{,4}:\d\+\>"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
142 syn match sshdconfigTime "\<\(\d\+[sSmMhHdDwW]\)\+\>"
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
143
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
144
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
145 " case off
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
146 syn case ignore
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
147
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
148
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
149 " Keywords
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
150 " Also includes RDomain, but that is a keyword.
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
151 syn keyword sshdconfigMatch Host User Group Address LocalAddress LocalPort
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
152
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
153 syn keyword sshdconfigKeyword AcceptEnv
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
154 syn keyword sshdconfigKeyword AddressFamily
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
155 syn keyword sshdconfigKeyword AllowAgentForwarding
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
156 syn keyword sshdconfigKeyword AllowGroups
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
157 syn keyword sshdconfigKeyword AllowStreamLocalForwarding
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
158 syn keyword sshdconfigKeyword AllowTcpForwarding
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
159 syn keyword sshdconfigKeyword AllowUsers
7597
3012eaddb6b2 commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
160 syn keyword sshdconfigKeyword AuthenticationMethods
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
161 syn keyword sshdconfigKeyword AuthorizedKeysCommand
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
162 syn keyword sshdconfigKeyword AuthorizedKeysCommandUser
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
163 syn keyword sshdconfigKeyword AuthorizedKeysFile
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
164 syn keyword sshdconfigKeyword AuthorizedPrincipalsCommand
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
165 syn keyword sshdconfigKeyword AuthorizedPrincipalsCommandUser
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
166 syn keyword sshdconfigKeyword AuthorizedPrincipalsFile
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
167 syn keyword sshdconfigKeyword Banner
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
168 syn keyword sshdconfigKeyword CASignatureAlgorithms
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
169 syn keyword sshdconfigKeyword ChallengeResponseAuthentication
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
170 syn keyword sshdconfigKeyword ChannelTimeout
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
171 syn keyword sshdconfigKeyword ChrootDirectory
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
172 syn keyword sshdconfigKeyword Ciphers
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
173 syn keyword sshdconfigKeyword ClientAliveCountMax
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
174 syn keyword sshdconfigKeyword ClientAliveInterval
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
175 syn keyword sshdconfigKeyword Compression
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
176 syn keyword sshdconfigKeyword DebianBanner
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
177 syn keyword sshdconfigKeyword DenyGroups
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
178 syn keyword sshdconfigKeyword DenyUsers
10498
883396809b45 commit https://github.com/vim/vim/commit/bc2eada5424bff06f7eb77c032ecc067da52b846
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
179 syn keyword sshdconfigKeyword DisableForwarding
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
180 syn keyword sshdconfigKeyword ExposeAuthInfo
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
181 syn keyword sshdconfigKeyword FingerprintHash
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
182 syn keyword sshdconfigKeyword ForceCommand
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
183 syn keyword sshdconfigKeyword GatewayPorts
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
184 syn keyword sshdconfigKeyword GSSAPIAuthentication
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
185 syn keyword sshdconfigKeyword GSSAPICleanupCredentials
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
186 syn keyword sshdconfigKeyword GSSAPIEnablek5users
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
187 syn keyword sshdconfigKeyword GSSAPIKexAlgorithms
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
188 syn keyword sshdconfigKeyword GSSAPIKeyExchange
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
189 syn keyword sshdconfigKeyword GSSAPIStoreCredentialsOnRekey
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
190 syn keyword sshdconfigKeyword GSSAPIStrictAcceptorCheck
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
191 syn keyword sshdconfigKeyword HostbasedAcceptedAlgorithms
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
192 syn keyword sshdconfigKeyword HostbasedAcceptedKeyTypes
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
193 syn keyword sshdconfigKeyword HostbasedAuthentication
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
194 syn keyword sshdconfigKeyword HostbasedUsesNameFromPacketOnly
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
195 syn keyword sshdconfigKeyword HostCertificate
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
196 syn keyword sshdconfigKeyword HostKey
7597
3012eaddb6b2 commit https://github.com/vim/vim/commit/345efa013dc6d1754ba06e5596a26c48c9935937
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
197 syn keyword sshdconfigKeyword HostKeyAgent
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
198 syn keyword sshdconfigKeyword HostKeyAlgorithms
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
199 syn keyword sshdconfigKeyword IgnoreRhosts
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
200 syn keyword sshdconfigKeyword IgnoreUserKnownHosts
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
201 syn keyword sshdconfigKeyword Include
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
202 syn keyword sshdconfigKeyword IPQoS
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
203 syn keyword sshdconfigKeyword KbdInteractiveAuthentication
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
204 syn keyword sshdconfigKeyword KerberosAuthentication
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
205 syn keyword sshdconfigKeyword KerberosGetAFSToken
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
206 syn keyword sshdconfigKeyword KerberosOrLocalPasswd
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
207 syn keyword sshdconfigKeyword KerberosTicketCleanup
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
208 syn keyword sshdconfigKeyword KerberosUniqueCCache
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
209 syn keyword sshdconfigKeyword KerberosUseKuserok
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
210 syn keyword sshdconfigKeyword KexAlgorithms
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
211 syn keyword sshdconfigKeyword KeyRegenerationInterval
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
212 syn keyword sshdconfigKeyword ListenAddress
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
213 syn keyword sshdconfigKeyword LoginGraceTime
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
214 syn keyword sshdconfigKeyword LogLevel
24278
4ab4ef0c48b1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23047
diff changeset
215 syn keyword sshdconfigKeyword LogVerbose
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
216 syn keyword sshdconfigKeyword MACs
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
217 syn keyword sshdconfigKeyword Match
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
218 syn keyword sshdconfigKeyword MaxAuthTries
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
219 syn keyword sshdconfigKeyword MaxSessions
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
220 syn keyword sshdconfigKeyword MaxStartups
31139
20cf2080f1ee Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 31028
diff changeset
221 syn keyword sshdconfigKeyword ModuliFile
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
222 syn keyword sshdconfigKeyword PasswordAuthentication
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
223 syn keyword sshdconfigKeyword PermitBlacklistedKeys
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
224 syn keyword sshdconfigKeyword PermitEmptyPasswords
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
225 syn keyword sshdconfigKeyword PermitListen
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
226 syn keyword sshdconfigKeyword PermitOpen
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
227 syn keyword sshdconfigKeyword PermitRootLogin
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
228 syn keyword sshdconfigKeyword PermitTTY
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
229 syn keyword sshdconfigKeyword PermitTunnel
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
230 syn keyword sshdconfigKeyword PermitUserEnvironment
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
231 syn keyword sshdconfigKeyword PermitUserRC
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
232 syn keyword sshdconfigKeyword PerSourceMaxStartups
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
233 syn keyword sshdconfigKeyword PerSourceNetBlockSize
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
234 syn keyword sshdconfigKeyword PidFile
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
235 syn keyword sshdconfigKeyword Port
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
236 syn keyword sshdconfigKeyword PrintLastLog
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
237 syn keyword sshdconfigKeyword PrintMotd
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
238 syn keyword sshdconfigKeyword Protocol
24278
4ab4ef0c48b1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 23047
diff changeset
239 syn keyword sshdconfigKeyword PubkeyAcceptedAlgorithms
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
240 syn keyword sshdconfigKeyword PubkeyAcceptedKeyTypes
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
241 syn keyword sshdconfigKeyword PubkeyAuthentication
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
242 syn keyword sshdconfigKeyword PubkeyAuthOptions
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
243 syn keyword sshdconfigKeyword RDomain
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
244 syn keyword sshdconfigKeyword RekeyLimit
31139
20cf2080f1ee Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 31028
diff changeset
245 syn keyword sshdconfigKeyword RequiredRSASize
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
246 syn keyword sshdconfigKeyword RevokedKeys
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
247 syn keyword sshdconfigKeyword RhostsRSAAuthentication
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
248 syn keyword sshdconfigKeyword RSAAuthentication
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16871
diff changeset
249 syn keyword sshdconfigKeyword SecurityKeyProvider
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
250 syn keyword sshdconfigKeyword ServerKeyBits
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
251 syn keyword sshdconfigKeyword SetEnv
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
252 syn keyword sshdconfigKeyword ShowPatchLevel
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
253 syn keyword sshdconfigKeyword StreamLocalBindMask
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
254 syn keyword sshdconfigKeyword StreamLocalBindUnlink
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
255 syn keyword sshdconfigKeyword StrictModes
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
256 syn keyword sshdconfigKeyword Subsystem
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
257 syn keyword sshdconfigKeyword SyslogFacility
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 714
diff changeset
258 syn keyword sshdconfigKeyword TCPKeepAlive
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
259 syn keyword sshdconfigKeyword TrustedUserCAKeys
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
260 syn keyword sshdconfigKeyword UnusedConnectionTimeout
31028
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
261 syn keyword sshdconfigKeyword UseBlacklist
5acd6f02ea35 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 24278
diff changeset
262 syn keyword sshdconfigKeyword UseBlocklist
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
263 syn keyword sshdconfigKeyword UseDNS
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
264 syn keyword sshdconfigKeyword UseLogin
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
265 syn keyword sshdconfigKeyword UsePAM
7384
aea5ebf352c4 commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents: 3224
diff changeset
266 syn keyword sshdconfigKeyword VersionAddendum
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
267 syn keyword sshdconfigKeyword X11DisplayOffset
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
268 syn keyword sshdconfigKeyword X11Forwarding
16871
e5dab34ded73 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12756
diff changeset
269 syn keyword sshdconfigKeyword X11MaxDisplays
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
270 syn keyword sshdconfigKeyword X11UseLocalhost
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
271 syn keyword sshdconfigKeyword XAuthLocation
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
272
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
273
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
274 " Define the default highlighting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
275
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
276 hi def link sshdconfigComment Comment
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
277 hi def link sshdconfigTodo Todo
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
278 hi def link sshdconfigHostPort sshdconfigConstant
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
279 hi def link sshdconfigTime Number
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
280 hi def link sshdconfigNumber Number
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
281 hi def link sshdconfigConstant Constant
34745
300525584c40 runtime(sshconfig,sshdconfig): update syntax (#14351)
Christian Brabandt <cb@256bit.org>
parents: 31139
diff changeset
282 hi def link sshdconfigYesNo Boolean
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
283 hi def link sshdconfigAddressFamily sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
284 hi def link sshdconfigPrivilegeSeparation sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
285 hi def link sshdconfigTcpForwarding sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
286 hi def link sshdconfigCiphers sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
287 hi def link sshdconfigMAC sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
288 hi def link sshdconfigHostKeyAlgo sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
289 hi def link sshdconfigRootLogin sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
290 hi def link sshdconfigLogLevel sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
291 hi def link sshdconfigSysLogFacility sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
292 hi def link sshdconfigVar sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
293 hi def link sshdconfigCompression sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
294 hi def link sshdconfigIPQoS sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
295 hi def link sshdconfigKexAlgo sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
296 hi def link sshdconfigTunnel sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
297 hi def link sshdconfigSubsystem sshdconfigEnum
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
298 hi def link sshdconfigEnum Function
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
299 hi def link sshdconfigSpecial Special
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
300 hi def link sshdconfigKeyword Keyword
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
301 hi def link sshdconfigMatch Type
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
302
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
303 let b:current_syntax = "sshdconfig"
3224
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
304
8b8ef1fed009 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
305 " vim:set ts=8 sw=2 sts=2: