mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
108 lines
1.1 KiB
Scheme
108 lines
1.1 KiB
Scheme
; Literals
|
|
(string) @string
|
|
|
|
(pattern) @string.regexp
|
|
|
|
(token) @character
|
|
|
|
[
|
|
(number)
|
|
(bytes)
|
|
(time)
|
|
] @number
|
|
|
|
[
|
|
(kex)
|
|
(mac)
|
|
(cipher)
|
|
(key_sig)
|
|
] @variable.parameter
|
|
|
|
[
|
|
; generic
|
|
"yes"
|
|
"no"
|
|
"ask"
|
|
"auto"
|
|
"none"
|
|
"any"
|
|
; CanonicalizeHostname
|
|
"always"
|
|
; ControlMaster
|
|
"autoask"
|
|
; FingerprintHash
|
|
"md5"
|
|
"sha256"
|
|
; PubkeyAuthentication
|
|
"unbound"
|
|
"host-bound"
|
|
; RequestTTY
|
|
"force"
|
|
; SessionType
|
|
"subsystem"
|
|
"default"
|
|
; StrictHostKeyChecking
|
|
"accept-new"
|
|
"off"
|
|
; Tunnel
|
|
"point-to-point"
|
|
"ethernet"
|
|
(ipqos)
|
|
(verbosity)
|
|
(facility)
|
|
(authentication)
|
|
] @constant.builtin
|
|
|
|
(uri) @string.special.url
|
|
|
|
; Keywords
|
|
[
|
|
"Host"
|
|
"Match"
|
|
] @keyword
|
|
|
|
(parameter
|
|
keyword: _ @keyword)
|
|
|
|
(host_declaration
|
|
argument: _ @module)
|
|
|
|
(match_declaration
|
|
(condition
|
|
criteria: _ @attribute))
|
|
|
|
"all" @attribute
|
|
|
|
; Misc
|
|
[
|
|
"SSH_AUTH_SOCK"
|
|
(variable)
|
|
] @constant
|
|
|
|
(comment) @comment @spell
|
|
|
|
; Punctuation
|
|
[
|
|
"${"
|
|
"}"
|
|
] @punctuation.special
|
|
|
|
[
|
|
"\""
|
|
","
|
|
":"
|
|
"@"
|
|
] @punctuation.delimiter
|
|
|
|
[
|
|
"="
|
|
"!"
|
|
"+"
|
|
"-"
|
|
"^"
|
|
] @operator
|
|
|
|
[
|
|
"*"
|
|
"?"
|
|
] @character.special
|