feat: add pymanifest parser

This commit is contained in:
ObserverOfTime 2023-08-10 11:35:27 +03:00
parent 5b3dd8cff1
commit 4e35ae6f71
5 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,22 @@
(keyword) @keyword
(dir_sep) @punctuation.delimiter
(glob) @punctuation.special
(linebreak) @character.special
(char_sequence) @string.special
(char_sequence
[ "[" "]" ] @punctuation.bracket)
(char_sequence "!" @operator)
(char_range "-" @operator)
(escaped_char) @string.escape
(ERROR) @error
(comment) @comment

View file

@ -0,0 +1,2 @@
((comment) @injection.content
(#set! injection.language "comment"))