You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/language_servers.md
+68-13
Original file line number
Diff line number
Diff line change
@@ -778,35 +778,90 @@ See [Javascript/TypeScript](#javascripttypescript).
778
778
## Typst
779
779
780
780
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 forthe relevant situationsin Typst files, adjust Sublime's `"auto_complete_selector"` and/or `"auto_complete_triggers"` setting (`Preferences > Settings`); for example
2. Open `Preferences > Package Settings > LSP > Settings` and add the `"tinymist"` client configuration to the `"clients"`:
783
802
784
803
```jsonc
785
804
{
786
805
"clients": {
787
-
"typst-lsp": {
806
+
"tinymist": {
788
807
"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
+
},
791
815
}
792
816
}
793
817
}
794
818
```
795
819
796
-
4. Optional: to enable auto-completions forthe relevant situationsin 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 -->
"command": ["path/to/typst-lsp"], // adjust this path according to your platform/setup
858
+
"selector": "text.typst"
859
+
}
860
+
}
806
861
}
807
862
```
808
863
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`:
810
865
811
866
<!-- how to call: see https://github.com/nvarner/typst-lsp/blob/master/editors/vscode/src/extension.ts -->
0 commit comments