mirror of
git://git.sv.gnu.org/nano.git
synced 2024-12-14 06:47:11 +03:00
6a2032f5b0
This allows for commenting or uncommenting a line or a bunch of lines with a single keystroke (default binding: M-3). The characters used for commenting/uncommenting are specified by the active syntax file. Reviewed-by: Benno Schulenberg <bensberg@justemail.net> Signed-off-by: Mike Scalora <mike@scalora.org>
31 lines
773 B
Plaintext
31 lines
773 B
Plaintext
## Here is an example for nftables.
|
|
|
|
syntax "nftables" "\.(nft|nftables)$"
|
|
header "^#!.*(nft|nftables)"
|
|
comment "#"
|
|
|
|
# Objects and operations
|
|
color green "\<(chain|hook|policy|priority|ruleset|set|table|type|v?map)\>"
|
|
color green "\<(define|include)\>"
|
|
color red "\<(add|delete|flush|insert|remove|replace)\>"
|
|
|
|
# Families
|
|
color yellow "\<(arp|bridge|inet|ip6?)\>"
|
|
|
|
# Terminal statements
|
|
color red "\<(drop|reject)\>"
|
|
color brightblue "\<(accept|continue|(d|s)nat|goto|jump|masquerade|return)\>"
|
|
|
|
# Comments
|
|
color cyan "(^|[[:space:]])#.*$"
|
|
|
|
# Trailing whitespace
|
|
color ,green "[[:space:]]+$"
|
|
|
|
# Strings and others
|
|
color yellow ""(\\.|[^"])*"" "'(\\.|[^'])*'"
|
|
color green "[{}():;|`$<>!=&\\]" "(\]|\[)"
|
|
|
|
# Basic variable names
|
|
color brightred "\$[[:alpha:]_][[:alnum:]_.]*"
|