Integrates Marksman language server into VSCode for delightful Markdown note taking experience.
See the project page for more detailed information.
-
Completion:
-
Get
marksman
server binary. The extension will try to automatically download Marksman language server from GH releases. This is the easiest way to get started.An alternative is to either download
marksman
binary from the releases page or to buildmarksman
from source. Put it somewhere in yourPATH
and you should be good to go. -
Add
.marksman.toml
to your workspace root folder. The extension is automatically activated only when.marksman.toml
file is present. This is done to avoid running Zeta Note on random Markdown files, but rather only inside your notes folder.
- Custom Command: allows to specify a custom command to start
marksman
. Mostly useful for development ofmarksman
itself. - Custom Command Dir: allows to specify a CWD for the command above. For
development it's convenient to set the command to
dotnet run
and the command dir to the dir wheremarksman
sources are.
- Set things up:
- Run
npm install
to get the necessary packages. - Run
npm watch
or hit F5 to do development/debugging.
- Run
- Package and release:
- Install vsce via
npm install -g vsce
. - Run
vsce package
to package the extension. - Run
vsce publish
to publish the packaged archive.
- Install vsce via
- Local installation:
- Run
code --install-extension [path-to-vsix]
to install the locally built extension.
- Run