diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 08:41:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 08:41:01 +0000 |
commit | 50693c367f8d3371e5c7eb85b0233fb56ae92a98 (patch) | |
tree | c693d63cf381d063796e5ef80160719eff05a213 /syntax/nftables.vim | |
parent | Initial commit. (diff) | |
download | vim-nftables-50693c367f8d3371e5c7eb85b0233fb56ae92a98.tar.xz vim-nftables-50693c367f8d3371e5c7eb85b0233fb56ae92a98.zip |
Adding upstream version 0.20200629.upstream/0.20200629upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'syntax/nftables.vim')
-rw-r--r-- | syntax/nftables.vim | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/syntax/nftables.vim b/syntax/nftables.vim new file mode 100644 index 0000000..f043e2e --- /dev/null +++ b/syntax/nftables.vim @@ -0,0 +1,37 @@ +if exists('b:current_syntax') + finish +endif + +syn match nftablesSet /{.*}/ contains=nftablesSetEntry +syn match nftablesSetEntry /[a-zA-Z0-9]\+/ contained +hi def link nftablesSet Keyword +hi def link nftablesSetEntry Operator + +syn match nftablesNumber "\<[0-9A-Fa-f./:]\+\>" contains=nftablesMask,nftablesDelimiter +syn match nftablesHex "\<0x[0-9A-Fa-f]\+\>" +syn match nftablesDelimiter "[./:]" contained +syn match nftablesMask "/[0-9.]\+" contained contains=nftablesDelimiter +hi def link nftablesNumber Number +hi def link nftablesHex Number +hi def link nftablesDelimiter Operator +hi def link nftablesMask Operator + +syn region Comment start=/#/ end=/$/ +syn region String start=/"/ end=/"/ +syn keyword Function flush +syn keyword Function table chain map +syn keyword Statement type hook +syn keyword Type ip ip6 inet arp bridge +syn keyword Type filter nat route +syn keyword Type ether vlan arp ip icmp igmp ip6 icmpv6 tcp udp udplite sctp dccp ah esp comp icmpx +syn keyword Type ct +syn keyword Type length protocol priority mark iif iifname iiftype oif oifname oiftype skuid skgid rtclassid +syn keyword Constant prerouting input forward output postrouting + +syn keyword Special snat dnat masquerade redirect +syn keyword Special accept drop reject queue +syn keyword Keyword continue return jump goto +syn keyword Keyword counter log limit +syn keyword Keyword define + +let b:current_syntax = 'nftables' |