Modify env language to extend bash (#5720)
Additionally, add `.envrc` to the `env`-supported file types.
This commit is contained in:
parent
8b25f44f05
commit
447909e4d0
2 changed files with 3 additions and 24 deletions
|
@ -2007,15 +2007,12 @@ source = { git = "https://github.com/hh9527/tree-sitter-wit", rev = "c917790ab9a
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "env"
|
name = "env"
|
||||||
scope = "source.env"
|
scope = "source.env"
|
||||||
file-types = [".env", ".env.local", ".env.development", ".env.production"]
|
file-types = [".env", ".env.local", ".env.development", ".env.production", ".envrc"]
|
||||||
injection-regex = "env"
|
injection-regex = "env"
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
indent = { tab-width = 4, unit = "\t" }
|
indent = { tab-width = 4, unit = "\t" }
|
||||||
roots = []
|
roots = []
|
||||||
|
grammar = "bash"
|
||||||
[[grammar]]
|
|
||||||
name = "env"
|
|
||||||
source = { git = "https://github.com/seshotake/tree-sitter-env", rev = "e6c6bb1e7b51d481cba463fe949f083cf22d81f7" }
|
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "ini"
|
name = "ini"
|
||||||
|
|
20
runtime/queries/env/highlights.scm
vendored
20
runtime/queries/env/highlights.scm
vendored
|
@ -1,19 +1 @@
|
||||||
(env_variable (quoted_string)) @string
|
; inherits: bash
|
||||||
(env_variable (unquoted_string)) @string
|
|
||||||
|
|
||||||
(env_key) @keyword
|
|
||||||
|
|
||||||
((variable) @keyword
|
|
||||||
(#match? @keyword "^([A-Z][A-Z_0-9]*)$"))
|
|
||||||
|
|
||||||
[
|
|
||||||
"{"
|
|
||||||
"}"
|
|
||||||
] @punctuation.bracket
|
|
||||||
|
|
||||||
[
|
|
||||||
"$"
|
|
||||||
"="
|
|
||||||
] @operator
|
|
||||||
|
|
||||||
(comment) @comment
|
|
Loading…
Add table
Reference in a new issue