Readme
seq-lsp
Language Server Protocol (LSP) implementation for the Seq programming language. Provides IDE features like autocompletion, hover information, and diagnostics.
Part of the Seq Workspace
This crate is part of the Seq programming language project.
Installation
cargo install seq-lsp
This installs the seq-lsp binary.
Editor Integration
VS Code
Install the Seq extension from the VS Code marketplace, or configure the LSP manually.
Neovim
Add to your LSP configuration:
vim . api . nvim_create_autocmd ( " FileType" , {
pattern = " seq" ,
callback = function ( )
vim . lsp . start ( {
name = " seq-lsp" ,
cmd = { " seq-lsp" } ,
} )
end ,
} )
License
MIT