| Crates.io | seq-lsp |
| lib.rs | seq-lsp |
| version | 3.0.1 |
| created_at | 2025-11-29 03:51:39.45028+00 |
| updated_at | 2026-01-25 18:44:59.361928+00 |
| description | Language Server Protocol implementation for Seq |
| homepage | |
| repository | https://github.com/navicore/patch-seq |
| max_upload_size | |
| id | 1956345 |
| size | 139,688 |
Language Server Protocol (LSP) implementation for the Seq programming language. Provides IDE features like autocompletion, hover information, and diagnostics.
This crate is part of the Seq programming language project.
| Crate | Description |
|---|---|
| seq-compiler | Compiler and CLI |
| seq-runtime | Runtime library |
| seq-lsp | Language Server Protocol implementation (this crate) |
| seq-repl | Interactive TUI REPL |
| vim-line | Vim-style line editor |
cargo install seq-lsp
This installs the seq-lsp binary.
Install the Seq extension from the VS Code marketplace, or configure the LSP manually.
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,
})
MIT