mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Add gherkin syntax highlighting (#11083)
Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
e604d9f8e0
commit
91e642ce50
3 changed files with 30 additions and 2 deletions
|
@ -58,6 +58,7 @@
|
||||||
| gas | ✓ | ✓ | | |
|
| gas | ✓ | ✓ | | |
|
||||||
| gdscript | ✓ | ✓ | ✓ | |
|
| gdscript | ✓ | ✓ | ✓ | |
|
||||||
| gemini | ✓ | | | |
|
| gemini | ✓ | | | |
|
||||||
|
| gherkin | ✓ | | | |
|
||||||
| git-attributes | ✓ | | | |
|
| git-attributes | ✓ | | | |
|
||||||
| git-commit | ✓ | ✓ | | |
|
| git-commit | ✓ | ✓ | | |
|
||||||
| git-config | ✓ | | | |
|
| git-config | ✓ | | | |
|
||||||
|
|
|
@ -3764,6 +3764,17 @@ grammar = "typescript"
|
||||||
"(" = ")"
|
"(" = ")"
|
||||||
'"' = '"'
|
'"' = '"'
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "gherkin"
|
||||||
|
scope = "source.feature"
|
||||||
|
file-types = ["feature"]
|
||||||
|
comment-token = "#"
|
||||||
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "gherkin"
|
||||||
|
source = { git = "https://github.com/SamyAB/tree-sitter-gherkin", rev = "43873ee8de16476635b48d52c46f5b6407cb5c09" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "thrift"
|
name = "thrift"
|
||||||
scope = "source.thrift"
|
scope = "source.thrift"
|
||||||
|
@ -3774,5 +3785,4 @@ indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "thrift"
|
name = "thrift"
|
||||||
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-thrift" , rev = "68fd0d80943a828d9e6f49c58a74be1e9ca142cf" }
|
source = { git = "https://github.com/tree-sitter-grammars/tree-sitter-thrift" , rev = "68fd0d80943a828d9e6f49c58a74be1e9ca142cf" }
|
||||||
|
|
17
runtime/queries/gherkin/highlights.scm
Normal file
17
runtime/queries/gherkin/highlights.scm
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
[
|
||||||
|
(feature_keyword)
|
||||||
|
(rule_keyword)
|
||||||
|
(background_keyword)
|
||||||
|
(scenario_keyword)
|
||||||
|
(given_keyword)
|
||||||
|
(when_keyword)
|
||||||
|
(then_keyword)
|
||||||
|
(and_keyword)
|
||||||
|
(but_keyword)
|
||||||
|
(asterisk_keyword)
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
(tag) @function
|
||||||
|
(doc_string) @string
|
||||||
|
(data_table) @special
|
||||||
|
(comment) @comment
|
Loading…
Add table
Add a link
Reference in a new issue