Skip to content

Commit

Permalink
Add racket-langserver installation instructions (#2481)
Browse files Browse the repository at this point in the history
* Add racket-langserver installation instructions

* Update docs/src/language_servers.md

* add ```

add ``` because it was stripped.

---------

Co-authored-by: Предраг Николић <[email protected]>
  • Loading branch information
omentic and predragnikolic authored May 29, 2024
1 parent 46171f6 commit ae0b220
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,24 @@ Follow installation instructions on [LSP-ruff](https://github.com/sublimelsp/LSP

Follow installation instructions on [R-IDE](https://github.com/REditorSupport/sublime-ide-r#installation).

## Racket

1. Install the [Racket](https://packagecontrol.io/packages/Racket) package from Package Control for syntax highlighting.
2. Follow the instructions for installation at [racket-langserver](https://github.com/jeapostrophe/racket-langserver).
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"racket-langserver"` client configuration to the `"clients"`:

```jsonc
{
"clients": {
"racket-langserver": {
"enabled": true,
"command": ["racket", "-l", "racket-langserver"],
"selector": "source.racket"
}
}
}
```

## Ruby / Ruby on Rails

There are multiple options:
Expand Down

0 comments on commit ae0b220

Please sign in to comment.