File tree Expand file tree Collapse file tree 7 files changed +68
-1
lines changed Expand file tree Collapse file tree 7 files changed +68
-1
lines changed Original file line number Diff line number Diff line change 3737 - d
3838 - dart
3939 - dockerfile
40+ - editorconfig
4041 - elisp
4142 - elixir
4243 - elm
Original file line number Diff line number Diff line change 66* .tar.gz
77* .elc
88* ~
9+
10+ .DS_Store
Original file line number Diff line number Diff line change 617617 url = https://github.com/tree-sitter-grammars/tree-sitter-zig.git
618618 update = none
619619 ignore = dirty
620- branch = master
620+ branch = master
621+ [submodule "repos/editorconfig "]
622+ path = repos/editorconfig
623+ url = https://github.com/ValdezFOmar/tree-sitter-editorconfig
624+ update = none
625+ ignore = dirty
626+ branch = main
Original file line number Diff line number Diff line change 11# Changelog
22
33## Unreleased
4+ - Add ` EditorConfig ` support
45
56## 0.12.234 - 2024-11-18
67
Original file line number Diff line number Diff line change 1+ (comment) @comment
2+
3+ (section
4+ (section_name) @string.special )
5+
6+ (character_choice
7+ (character) @constant )
8+
9+ (character_range
10+ start: (character) @constant
11+ end: (character) @constant )
12+
13+ [
14+ "["
15+ "]"
16+ "{"
17+ "}"
18+ ] @punctuation.bracket
19+
20+ [
21+ ","
22+ ".."
23+ (path_separator)
24+ ] @punctuation.delimiter
25+
26+ [
27+ "-"
28+ "="
29+ (negation)
30+ ] @operator
31+
32+ [
33+ (wildcard_characters)
34+ (wildcard_any_characters)
35+ (wildcard_single_character)
36+ ] @character.special
37+
38+ (escaped_character) @escape
39+
40+ (pair
41+ key: (identifier) @property
42+ value: (_) @string )
43+
44+ (boolean) @boolean
45+
46+ (integer) @number
47+
48+ (unset) @constant.builtin
49+
50+ [
51+ (spelling_language)
52+ (indent_style)
53+ (end_of_line)
54+ (charset)
55+ ] @string.special
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ See `tree-sitter-langs-repos'."
124124 (dockerfile-mode . dockerfile)
125125 (css-mode . css)
126126 (csv-mode . csv)
127+ (editorconfig-conf-mode . editorconfig)
127128 (elm-mode . elm)
128129 (elixir-mode . elixir)
129130 (emacs-lisp-mode . elisp)
You can’t perform that action at this time.
0 commit comments