Language server for Hydra YAML config files
Project description
LSP for Hydra config files
Installation
-
Using pypi:
pip install hydra-lsp
-
Using poetry:
poetry install
How to use
To try it out, use the following code snippet in neovim.
Note: If you are VS Code user - check out the extension.
local lspconfig = require("lspconfig")
local configs = require("lspconfig.configs")
local on_attach = function(client, bufnr)
local nmap = function(keys, func, desc)
desc = "LSP: " .. desc
vim.keymap.set("n", keys, func, { buffer = bufnr, desc = desc, noremap = true })
end
nmap("gd", vim.lsp.buf.definition, "[G]oto [D]efinition")
nmap("gD", vim.lsp.buf.declaration, "[G]oto [D]eclaration")
nmap("gr", require("telescope.builtin").lsp_references, "[G]oto [R]eferences")
nmap("gI", vim.lsp.buf.implementation, "[G]oto [I]mplementation")
nmap("K", vim.lsp.buf.hover, "Hover Documentation")
nmap("<C-k>", vim.lsp.buf.signature_help, "Signature Documentation")
nmap("<leader>rn", vim.lsp.buf.rename, "[R]e[n]ame")
nmap("<leader>ca", vim.lsp.buf.code_action, "[C]ode [A]ction")
end
if not configs.hydralsp then
configs.hydralsp = {
default_config = {
cmd = { "hydra-lsp" },
root_dir = lspconfig.util.root_pattern(".git"),
filetypes = { "yaml" },
},
}
end
lspconfig.hydralsp.setup({
on_attach = lsp.on_attach,
})
Note: make sure to install hydra-lsp so that nvim can find an executable (poetry install
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
hydra_lsp-0.1.3.tar.gz
(9.2 kB
view hashes)
Built Distribution
hydra_lsp-0.1.3-py3-none-any.whl
(11.4 kB
view hashes)
Close
Hashes for hydra_lsp-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e212170606c99c07df876b03fb875f2be35bd6b8d0cb60277ece5212228e723 |
|
MD5 | 3e326cf3a2a94fcc0caae105f080eb8e |
|
BLAKE2b-256 | 643d568277f6264668f552a0ec16639f54bb02325e1a6d6f01e2c5aa82ee5536 |