racket: Extract to zed-extensions/racket repository (#22630)

This PR extracts the Racket extension to the
[zed-extensions/racket](https://github.com/zed-extensions/racket)
repository.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-01-03 17:04:50 -05:00 committed by GitHub
parent fdbf3d0f25
commit 4bd5f0d355
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 1 additions and 78 deletions

View file

@ -1,6 +1,6 @@
# Racket
Racket support is available through the [Racket extension](https://github.com/zed-industries/zed/tree/main/extensions/racket).
Racket support is available through the [Racket extension](https://github.com/zed-extensions/racket).
- Tree Sitter: [zed-industries/tree-sitter-racket](https://github.com/zed-industries/tree-sitter-racket)

View file

@ -1 +0,0 @@
../../LICENSE-APACHE

View file

@ -1,11 +0,0 @@
id = "racket"
name = "Racket"
description = "Racket support."
version = "0.0.2"
schema_version = 1
authors = ["Mikayla Maki <mikayla@zed.dev>"]
repository = "https://github.com/zed-industries/zed"
[grammars.racket]
repository = "https://github.com/zed-industries/tree-sitter-racket"
commit = "beb29de2b668110e69df0c6d51649c3e2c91d863"

View file

@ -1,3 +0,0 @@
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)

View file

@ -1,10 +0,0 @@
name = "Racket"
grammar = "racket"
path_suffixes = ["rkt"]
line_comments = ["; "]
autoclose_before = "])"
brackets = [
{ start = "[", end = "]", close = true, newline = false },
{ start = "(", end = ")", close = true, newline = false },
{ start = "\"", end = "\"", close = true, newline = false },
]

File diff suppressed because one or more lines are too long

View file

@ -1,3 +0,0 @@
(_ "[" "]") @indent
(_ "{" "}") @indent
(_ "(" ")") @indent

View file

@ -1,10 +0,0 @@
(list
.
(symbol) @start-symbol @context
.
[
(symbol) @name
(list . (symbol) @name)
]
(#match? @start-symbol "^define")
) @item