Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tree-sitter rolling fixes, 1.122 edition #1101

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
432 changes: 432 additions & 0 deletions packages/language-c/grammars/common/highlights.scm

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion packages/language-c/grammars/modern-tree-sitter-c.cson
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ injectionRegex: '^(c|C)$'
treeSitter:
parserSource: 'github:tree-sitter/tree-sitter-c#212a80f86452bb1316324fa0db730cf52f29e05a'
grammar: 'tree-sitter-c/tree-sitter-c.wasm'
highlightsQuery: 'tree-sitter-c/highlights.scm'
languageSegment: 'c'
highlightsQuery: [
'common/highlights.scm'
'tree-sitter-c/highlights.scm'
]
tagsQuery: 'tree-sitter-c/tags.scm'
foldsQuery: 'tree-sitter-c/folds.scm'
indentsQuery: 'tree-sitter-c/indents.scm'
Expand Down
6 changes: 5 additions & 1 deletion packages/language-c/grammars/modern-tree-sitter-cpp.cson
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ injectionRegex: '^(c|C)(\\+\\+|pp|PP)$'
treeSitter:
parserSource: 'github:tree-sitter/tree-sitter-cpp#a71474021410973b29bfe99440d57bcd750246b1'
grammar: 'tree-sitter-cpp/tree-sitter-cpp.wasm'
highlightsQuery: 'tree-sitter-cpp/highlights.scm'
languageSegment: 'cpp'
highlightsQuery: [
'common/highlights.scm'
'tree-sitter-cpp/highlights.scm'
]
tagsQuery: 'tree-sitter-cpp/tags.scm'
foldsQuery: 'tree-sitter-cpp/folds.scm'
indentsQuery: 'tree-sitter-cpp/indents.scm'
Expand Down
Loading
Loading