Skip to content

Commit 40ea8ea

Browse files
committed
add info about tinymist and show how to pass initialization options to it
1 parent 293f4a4 commit 40ea8ea

File tree

1 file changed

+68
-13
lines changed

1 file changed

+68
-13
lines changed

docs/src/language_servers.md

+68-13
Original file line numberDiff line numberDiff line change
@@ -778,35 +778,90 @@ See [Javascript/TypeScript](#javascripttypescript).
778778
## Typst
779779

780780
1. Install the [Typst](https://packagecontrol.io/packages/Typst) package from Package Control for syntax highlighting.
781-
2. Download the [typst-lsp](https://github.com/nvarner/typst-lsp/releases) language server executable for your platform.
782-
3. Open `Preferences > Package Settings > LSP > Settings` and add the `"typst-lsp"` client configuration to the `"clients"`:
781+
2. Optional: to enable auto-completions for the relevant situations in Typst files, adjust Sublime's `"auto_complete_selector"` and/or `"auto_complete_triggers"` setting (`Preferences > Settings`); for example
782+
783+
```jsonc
784+
{
785+
"auto_complete_triggers":
786+
[
787+
{"selector": "text.html, text.xml", "characters": "<"},
788+
{"selector": "punctuation.accessor", "rhs_empty": true},
789+
{"selector": "text.typst", "characters": "#", "rhs_empty": true},
790+
],
791+
}
792+
```
793+
794+
There are 2 available languages servers.
795+
796+
### Tinymist
797+
798+
This server has more features, like go to definition, rename, etc.
799+
800+
1. Install [tinymist](https://github.com/Myriad-Dreamin/tinymist).
801+
2. Open `Preferences > Package Settings > LSP > Settings` and add the `"tinymist"` client configuration to the `"clients"`:
783802
784803
```jsonc
785804
{
786805
"clients": {
787-
"typst-lsp": {
806+
"tinymist": {
788807
"enabled": true,
789-
"command": ["C:\\path\\to\\typst-lsp-win32-x64.exe"], // adjust this path according to your platform/setup
790-
"selector": "text.typst"
808+
"command": ["path/to/tinymist"], // adjust this path according to your platform/setup
809+
"selector": "text.typst",
810+
// you can provide some initialization options:
811+
"initializationOptions": {
812+
"exportPdf": "never",
813+
"typstExtraArgs": [],
814+
},
791815
}
792816
}
793817
}
794818
```
795819
796-
4. Optional: to enable auto-completions for the relevant situations in Typst files, adjust Sublime's `"auto_complete_selector"` and/or `"auto_complete_triggers"` setting (`Preferences > Settings`); for example
820+
3. Optional: to enable some useful commands provided by language server, add the following to the `*.sublime-commands`:
821+
822+
<!-- how to call: see https://github.com/Myriad-Dreamin/tinymist/blob/main/editors/vscode/src/extension.ts -->
823+
```jsonc title="Packages/User/Default.sublime-commands"
824+
[
825+
// ...
826+
{
827+
"caption": "tinymist - Pin the main file to the currently opened document",
828+
"command": "lsp_execute",
829+
"args": {
830+
"session_name": "tinymist",
831+
"command_name": "tinymist.pinMain",
832+
"command_args": ["${file}"]
833+
}
834+
},
835+
{
836+
"caption": "tinymist - Unpin the main file",
837+
"command": "lsp_execute",
838+
"args": {
839+
"session_name": "tinymist",
840+
"command_name": "tinymist.pinMain",
841+
"command_args": [null]
842+
}
843+
},
844+
]
845+
```
846+
847+
### Typst-lsp
848+
849+
1. Install [typst-lsp](https://github.com/nvarner/typst-lsp/releases).
850+
2. Open `Preferences > Package Settings > LSP > Settings` and add the `"typst-lsp"` client configuration to the `"clients"`:
797851
798852
```jsonc
799853
{
800-
"auto_complete_triggers":
801-
[
802-
{"selector": "text.html, text.xml", "characters": "<"},
803-
{"selector": "punctuation.accessor", "rhs_empty": true},
804-
{"selector": "text.typst", "characters": "#", "rhs_empty": true},
805-
],
854+
"clients": {
855+
"typst-lsp": {
856+
"enabled": true,
857+
"command": ["path/to/typst-lsp"], // adjust this path according to your platform/setup
858+
"selector": "text.typst"
859+
}
860+
}
806861
}
807862
```
808863
809-
5. Optional: to enable some useful commands provided by language server, add the following to the `*.sublime-commands`:
864+
3. Optional: to enable some useful commands provided by language server, add the following to the `*.sublime-commands`:
810865
811866
<!-- how to call: see https://github.com/nvarner/typst-lsp/blob/master/editors/vscode/src/extension.ts -->
812867
```jsonc title="Packages/User/Default.sublime-commands"

0 commit comments

Comments
 (0)