mirror of https://github.com/helix-editor/helix
Merge 588e8bee1a
into 1315b7e2b1
commit
2ac358899d
|
@ -153,6 +153,7 @@
|
||||||
| mojo | ✓ | ✓ | ✓ | `pixi` |
|
| mojo | ✓ | ✓ | ✓ | `pixi` |
|
||||||
| move | ✓ | | | |
|
| move | ✓ | | | |
|
||||||
| msbuild | ✓ | | ✓ | |
|
| msbuild | ✓ | | ✓ | |
|
||||||
|
| multicursor | ✓ | | | |
|
||||||
| nasm | ✓ | ✓ | | `asm-lsp` |
|
| nasm | ✓ | ✓ | | `asm-lsp` |
|
||||||
| nestedtext | ✓ | ✓ | ✓ | |
|
| nestedtext | ✓ | ✓ | ✓ | |
|
||||||
| nginx | ✓ | | | |
|
| nginx | ✓ | | | |
|
||||||
|
|
|
@ -4225,6 +4225,16 @@ indent = { tab-width = 4, unit = " " }
|
||||||
name = "gren"
|
name = "gren"
|
||||||
source = { git = "https://github.com/MaeBrooks/tree-sitter-gren", rev = "76554f4f2339f5a24eed19c58f2079b51c694152" }
|
source = { git = "https://github.com/MaeBrooks/tree-sitter-gren", rev = "76554f4f2339f5a24eed19c58f2079b51c694152" }
|
||||||
|
|
||||||
|
[[language]]
|
||||||
|
name = "multicursor"
|
||||||
|
scope = "source.multicursor"
|
||||||
|
injection-regex = "multicursor"
|
||||||
|
file-types = ["multicursor"]
|
||||||
|
|
||||||
|
[[grammar]]
|
||||||
|
name = "multicursor"
|
||||||
|
source = { git = "https://github.com/nik-rev/tree-sitter-multicursor", rev = "f6f868ecfe3de2fb2cd815cb40be55493f699a49" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "ghostty"
|
name = "ghostty"
|
||||||
scope = "source.ghostty"
|
scope = "source.ghostty"
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
[
|
||||||
|
(start_left_primary)
|
||||||
|
(end_left_primary)
|
||||||
|
(start_right_primary)
|
||||||
|
(end_right_primary)
|
||||||
|
(start_left)
|
||||||
|
(end_left)
|
||||||
|
(start_right)
|
||||||
|
(end_right)
|
||||||
|
] @punctuation.special
|
||||||
|
|
||||||
|
(cursor_primary) @ui.cursor.primary
|
||||||
|
(cursor) @ui.cursor
|
||||||
|
|
||||||
|
(left_primary (char) @ui.selection.primary)
|
||||||
|
(right_primary (char) @ui.selection.primary)
|
||||||
|
(left (char) @ui.selection)
|
||||||
|
(right (char) @ui.selection)
|
||||||
|
|
||||||
|
(ERROR) @error
|
Loading…
Reference in New Issue