diff options
author | Erasin | 2023-02-20 23:04:17 +0000 |
---|---|---|
committer | GitHub | 2023-02-20 23:04:17 +0000 |
commit | 864ee8fdef435893832a2698159407bd9b43f274 (patch) | |
tree | c67f9792fbd1faa04435b0e6fda7f93bd3ca65c3 /runtime | |
parent | b89b2eaf68c53a2c10a0f649f9487ad46c85e11e (diff) |
Add GNU gettext PO grammar (#5996)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/queries/po/highlights.scm | 15 | ||||
-rw-r--r-- | runtime/queries/po/textobjects.scm | 6 |
2 files changed, 21 insertions, 0 deletions
diff --git a/runtime/queries/po/highlights.scm b/runtime/queries/po/highlights.scm new file mode 100644 index 00000000..b090f129 --- /dev/null +++ b/runtime/queries/po/highlights.scm @@ -0,0 +1,15 @@ +[ + (msgctxt) + (msgid) + (msgid_plural) + (msgstr) +]@keyword + +(comment) @comment +(comment (comment_reference (text) @string.special.path)) +(comment (comment_flag (text) @label)) + +(number) @constant.numeric +(string) @string + +(ERROR) @error diff --git a/runtime/queries/po/textobjects.scm b/runtime/queries/po/textobjects.scm new file mode 100644 index 00000000..70abcb14 --- /dev/null +++ b/runtime/queries/po/textobjects.scm @@ -0,0 +1,6 @@ +(msgid) @parameter.inside + +(comment) @comment.inside +(comment)+ @comment.around + + |