-
I am trying to integrate the zk zettelkasten lsp server to Textadept. From the docs, I arrived at this config: init.lua: local lsp = require('lsp')
lsp.log_rpc = true
lsp.server_commands.md = "zk lsp" When I open a .lua file,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
lsp.server_commands expects a lexer name (markdown), not the language file extension (md). So the answer is:
You can find the lexers in the lexers/ directory in the tar.gz installation file. |
Beta Was this translation helpful? Give feedback.
lsp.server_commands expects a lexer name (markdown), not the language file extension (md). So the answer is:
You can find the lexers in the lexers/ directory in the tar.gz installation file.