Closed devanlooches closed 10 months ago
Here is my lsp configuration for the Helix editor:
[[language]] name = "typst" scope = "source.typst" injection-regex = "^typ(st)?$" file-types = ["typ"] roots = [] language-servers = ["typst-lsp", "prosemd"] [language.auto-pairs] '(' = ')' '{' = '}' '[' = ']' '"' = '"' '`' = '`' '$' = '$' [language-server.typst-lsp] command = "typst-lsp" config = { exportPdf = "onType" } roots = [] comment-token = "//" indent = { tab-width = 2, unit = " " } formatter = { command = "typstfmt" } text-width = 100 rulers = [100] soft-wrap.wrap-at-text-width = true
Even though I set the export-pdf option to onType, it does not compile onType and instead only compiles onSave. Thanks in advance for any help!
Ah never mind, looks like the issue resolved itself...
Issue
Here is my lsp configuration for the Helix editor:
Even though I set the export-pdf option to onType, it does not compile onType and instead only compiles onSave. Thanks in advance for any help!