Tinymist [ˈtaɪni mɪst] is an integrated language service for Typst [taɪpst].
Find a file
Myriad-Dreamin c92149fa3e
feat: add init template command (#50)
* feat: add init template command

* dev: remove bad patch
2024-03-16 13:21:29 +08:00
.github feat: remove win32-ia32 to build 2024-03-10 22:24:36 +08:00
.vscode feat: local publish 2024-03-09 16:15:45 +08:00
crates feat: add init template command (#50) 2024-03-16 13:21:29 +08:00
editors/vscode feat: add init template command (#50) 2024-03-16 13:21:29 +08:00
.gitignore docs: introduce language features 2024-03-09 17:20:20 +08:00
.prettierignore dev: init 2024-03-07 05:29:31 +08:00
Cargo.lock feat: add init template command (#50) 2024-03-16 13:21:29 +08:00
Cargo.toml feat: add init template command (#50) 2024-03-16 13:21:29 +08:00
LICENSE dev: init 2024-03-07 05:29:31 +08:00
README.md feat: support query of cross-module references (#42) 2024-03-15 15:43:42 +08:00

Tinymist

Tinymist [ˈtaɪni mɪst] is an integrated language service for Typst [taɪpst]. You can also call it "微霭" [wēi ǎi] in Chinese.

It contains:

Features

Language service (LSP) features:

  • Semantic highlighting
    • Also known as "syntax highlighting".
  • Diagnostics
    • Also known as "error checking" or "error reporting".
  • Document symbols
    • Also known as "document outline" or "table of contents" in Typst.
  • Folding ranges
    • You can collapse code/content blocks and headings.
  • Goto definitions
    • Right-click on a symbol and select "Go to Definition".
    • Or ctrl+click on a symbol.
  • References
    • Right-click on a symbol and select "Go to References" or "Find References".
    • Or ctrl+click on a symbol.
  • Hover tips
    • Also known as "hovering tooltip".
  • Inlay hints
    • Inlay hints are special markers that appear in the editor and provide you with additional information about your code, like the names of the parameters that a called method expects.
  • Code Lens
    • Should give contextual buttons along with code. For example, a button for exporting your document to various formats at the start of the document.
  • Rename symbols
  • Help with function and method signatures
  • Workspace Symbols

Extra features:

  • Compiles to PDF on save (configurable to as-you-type, or other options)

Installation

Follow the instructions to enable tinymist in your favorite editor.

Acknowledgements