Tinymist [ˈtaɪni mɪst] is an integrated language service for Typst [taɪpst].
Find a file
2024-04-01 10:27:23 +08:00
.github build: bump version to 0.11.2 (#136) 2024-03-30 23:02:43 +08:00
.vscode feat: local publish 2024-03-09 16:15:45 +08:00
crates dev: early exit on simple syntax nodes (#141) 2024-04-01 10:27:23 +08:00
editors dev: init summary page (#137) 2024-04-01 10:16:26 +08:00
scripts fix: empty url sent from neovim (#130) 2024-03-30 20:04:03 +08:00
syntaxes/textmate fix: better grammar on incomplete AST (#140) 2024-04-01 01:51:42 +08:00
tests dev: init summary page (#137) 2024-04-01 10:16:26 +08:00
tools/editor-tools dev: init summary page (#137) 2024-04-01 10:16:26 +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 dev: init summary page (#137) 2024-04-01 10:16:26 +08:00
Cargo.toml dev: init summary page (#137) 2024-04-01 10:16:26 +08:00
CHANGELOG.md build: bump version to 0.11.2 (#136) 2024-03-30 23:02:43 +08:00
CONTRIBUTING.md build: bump version to 0.11.1 (#106) 2024-03-27 10:30:50 +08:00
LICENSE dev: init 2024-03-07 05:29:31 +08:00
package.json feat: add template gallery as template picker (#52) 2024-03-16 22:23:09 +08:00
README.md build: bump version to 0.11.1 (#106) 2024-03-27 10:30:50 +08:00
yarn.lock feat: provide more robust syntax highlight for expressions in markup context (#80) 2024-03-21 17:52:51 +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)
  • Editor tools:
    • View a list of templates in template gallery.
    • Click a button in template gallery to initialize a new project with a template.

Installation

Follow the instructions to enable tinymist in your favorite editor.

Contributing

Please read the CONTRIBUTING.md file for contribution guidelines.

Acknowledgements