added nixd lsp to helix

This commit is contained in:
Emile Clark-Boman 2025-02-13 12:23:39 +10:00
parent 1d4189b040
commit 64d5097f1a
4 changed files with 125 additions and 28 deletions

18
HELIX_LSP_GUIDE Normal file
View file

@ -0,0 +1,18 @@
`gd` (goto definition when LSP is active)
`gy` (goto type definition)
`gr` (goto references)
`gi` (goto implementation)
`<space>k` (show documentation for item under cursor)
`<space>s` (show picker for symbols in file)
`<space>S` (show picker for symbols in workspace)
`<space>d` (document diagnostics picker for file)
`<space>D` (document diagnostics picker for workspace)
`<space>r` (rename symbol)
`<space>a` (apply code action, not show what that means though...)
`<space>h` (select symbol references)
`]d` (goto next diagnostic)
`[d` (goto previous diagnostic)
`]D` (goto last diagnostic in document)
`[D` (goto first diagnostic in document)