Nik Revenco 2025-06-13 14:57:26 -04:00 committed by GitHub
commit 2ac358899d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 31 additions and 0 deletions

View File

@ -153,6 +153,7 @@
| mojo | ✓ | ✓ | ✓ | `pixi` |
| move | ✓ | | | |
| msbuild | ✓ | | ✓ | |
| multicursor | ✓ | | | |
| nasm | ✓ | ✓ | | `asm-lsp` |
| nestedtext | ✓ | ✓ | ✓ | |
| nginx | ✓ | | | |

View File

@ -4225,6 +4225,16 @@ indent = { tab-width = 4, unit = " " }
name = "gren"
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]]
name = "ghostty"
scope = "source.ghostty"

View File

@ -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