mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
1
runtime/queries/terraform/folds.scm
Normal file
1
runtime/queries/terraform/folds.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: hcl
|
||||
21
runtime/queries/terraform/highlights.scm
Normal file
21
runtime/queries/terraform/highlights.scm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
; inherits: hcl
|
||||
|
||||
; Terraform specific references
|
||||
;
|
||||
;
|
||||
; local/module/data/var/output
|
||||
(expression (variable_expr (identifier) @variable.builtin (#any-of? @variable.builtin "data" "var" "local" "module" "output")) (get_attr (identifier) @field))
|
||||
|
||||
; path.root/cwd/module
|
||||
(expression (variable_expr (identifier) @type.builtin (#eq? @type.builtin "path")) (get_attr (identifier) @variable.builtin (#any-of? @variable.builtin "root" "cwd" "module")))
|
||||
|
||||
; terraform.workspace
|
||||
(expression (variable_expr (identifier) @type.builtin (#eq? @type.builtin "terraform")) (get_attr (identifier) @variable.builtin (#any-of? @variable.builtin "workspace")))
|
||||
|
||||
; Terraform specific keywords
|
||||
|
||||
; FIXME: ideally only for identifiers under a `variable` block to minimize false positives
|
||||
((identifier) @type.builtin (#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))
|
||||
(object_elem val: (expression
|
||||
(variable_expr
|
||||
(identifier) @type.builtin (#any-of? @type.builtin "bool" "string" "number" "object" "tuple" "list" "map" "set" "any"))))
|
||||
1
runtime/queries/terraform/indents.scm
Normal file
1
runtime/queries/terraform/indents.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: hcl
|
||||
1
runtime/queries/terraform/injections.scm
Normal file
1
runtime/queries/terraform/injections.scm
Normal file
|
|
@ -0,0 +1 @@
|
|||
; inherits: hcl
|
||||
Loading…
Add table
Add a link
Reference in a new issue