aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/tclsp.lua
blob: 7560ea674c87206db04c64bc88321e034ce87e63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---@brief
---
--- https://github.com/nmoroze/tclint
---
--- `tclsp`, a language server for Tcl
---
--- `tclsp` can be installed via `pipx`:
--- ```sh
--- pipx install tclint
--- ```
---
--- Or via `pip`:
--- ```sh
--- pip install tclint
--- ```

---@type vim.lsp.Config
return {
  cmd = { 'tclsp' },
  filetypes = { 'tcl', 'sdc', 'xdc', 'upf' },
  root_markers = { 'tclint.toml', '.tclint', 'pyproject.toml', '.git' },
}