Fix inlay hint toggle keybind

This commit is contained in:
Vili Sinervä 2025-01-04 16:18:12 +02:00
parent 79d579f90d
commit ebaae1ae23
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

@ -218,8 +218,8 @@ in
};
extra = [
{
action.__raw = "vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())";
key = "<leader>i";
action = "<cmd>lua vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled())<cr>";
key = "<leader>h";
options.desc = "Toggle LSP Inlay Hints";
}
];