How to disable inline preview in vscode / tinymist?

Hi,

I am fairly new to writing in typst and i just started using the tinymist extension within vs code.
When typing normal text, i get an instant preview window, that is quite annoying while typing a longer section without using formulas / special formatting options. Is there a way to disable the feature in the editor?

1 Like

Add the following lines in your VS Code settings:

  "editor.quickSuggestions": {
    "other": "off",
  }

Alternatively, search quickSuggestions in GUI settings and switch “other” to “off”:

4 Likes

If you want to disable these suggestions only for typst documents and keep them for others (e.g. programming languages), you can insert this block into your settings.json:

"[typst]": {
  "editor.quickSuggestions": {
    "other": "off"
  }
}
3 Likes

thank you, this worked perfectly!

Thanks @Tabea_Tentakel , could you please indicate the post you think helped you the most and mark it as the :white_check_mark: solution for others to find quickly?