Myriad-Dreamin / tinymist

Tinymist [ˈtaɪni mɪst] is an integrated language service for Typst [taɪpst].
https://myriad-dreamin.github.io/tinymist
Apache License 2.0
748 stars 30 forks source link

typstfmt doesn't seem to work on my side #28

Closed Myriad-Dreamin closed 7 months ago

Myriad-Dreamin commented 8 months ago

This is because I have not made that feature.

KagaJiankui commented 7 months ago

A temporary workaround is use VSCode Tasks to invoke typstfmt in command line.

{
  "label": "Typstfmt",
  "type":"shell",
  "command": "typstfmt",
  "args": [
    "${fileBasenameNoExtension}.typ"
  ],
  "options": {
    "cwd": "${workspaceFolder}/${relativeFileDirname}"
  },
  "problemMatcher": []
}
Myriad-Dreamin commented 7 months ago

fixed by #113