Add syntax highlighting for /etc/group file

This commit is contained in:
Anubhab Ghosh 2019-10-23 23:54:46 +05:30 committed by David Peter
parent 4664fb6f91
commit 15b1676b72
1 changed files with 48 additions and 0 deletions

48
assets/syntaxes/Group.sublime-syntax vendored Normal file
View File

@ -0,0 +1,48 @@
%YAML 1.2
---
# http://www.sublimetext.com/docs/3/syntax.html
name: group
file_extensions:
- group
scope: source.group
contexts:
main:
- comment: name
match: ^[^:]+
scope: keyword
- comment: password
match: ":"
push: password
password:
- comment: uid
match: ":"
set: gid
- comment: shadowpassword
match: "[^:]+"
scope: invalid
gid:
- comment: gid
match: ":"
set: users
- comment: number
match: "[0-9]+"
scope: constant.numeric
users:
- comment: newline
match: "\n"
pop: true
- comment: directory
match: "[^:\n]+"
scope: variable.parameter
- comment: separator
match: ","
scope: punctuation