diff options
author | Michael Davis | 2021-12-30 22:58:47 +0000 |
---|---|---|
committer | GitHub | 2021-12-30 22:58:47 +0000 |
commit | 8fda87af2bb0625c502a23ddbd78a7447ada7bcb (patch) | |
tree | 62a9f9a0cdd007bb3de78b7a153fcf8d00b8de84 /runtime/queries/git-rebase | |
parent | a066f59dc87608935ef4a3a3df3edf180c809e11 (diff) |
add tree-sitter-git-rebase (#1402)
* add submodule on tree-sitter-rebase, add to languages
* add basic highlights query
* inject bash in execute statements
* update tree-sitter-rebase
* tree-sitter-rebase->tree-sitter-git-rebase
* get injection working with tree-sitter-git-commit
* set scope under source.gitrebase
* unset include-children on commit message injections
* Revert "unset include-children on commit message injections"
This reverts commit 2ecee155ea8e229651920b291062c2ee84b47944.
* fix generated language docs
* use rebase_command scopes from tree-sitter-git-commit
Diffstat (limited to 'runtime/queries/git-rebase')
-rw-r--r-- | runtime/queries/git-rebase/highlights.scm | 11 | ||||
-rw-r--r-- | runtime/queries/git-rebase/injections.scm | 4 |
2 files changed, 15 insertions, 0 deletions
diff --git a/runtime/queries/git-rebase/highlights.scm b/runtime/queries/git-rebase/highlights.scm new file mode 100644 index 00000000..4f007037 --- /dev/null +++ b/runtime/queries/git-rebase/highlights.scm @@ -0,0 +1,11 @@ +(operation operator: ["p" "pick" "r" "reword" "e" "edit" "s" "squash" "m" "merge" "d" "drop" "b" "break" "x" "exec"] @keyword) +(operation operator: ["l" "label" "t" "reset"] @function) +(operation operator: ["f" "fixup"] @function.special) + +(option) @operator +(label) @string.special.symbol +(commit) @constant +"#" @punctuation.delimiter +(comment) @comment + +(ERROR) @error diff --git a/runtime/queries/git-rebase/injections.scm b/runtime/queries/git-rebase/injections.scm new file mode 100644 index 00000000..070129b6 --- /dev/null +++ b/runtime/queries/git-rebase/injections.scm @@ -0,0 +1,4 @@ +((operation + operator: ["x" "exec"] + (command) @injection.content) + (#set! injection.language "bash")) |