feat: remove rustaceanvim bind for hover actions
This commit is contained in:
parent
9aee982481
commit
7019e4e902
|
@ -1,7 +1,5 @@
|
||||||
local map = vim.keymap.set
|
local map = vim.keymap.set
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
map("n", ";", ":", { desc = "CMD enter command mode" })
|
map("n", ";", ":", { desc = "CMD enter command mode" })
|
||||||
|
|
||||||
map("i", "<C-h>", "<Left>", { desc = "move left" })
|
map("i", "<C-h>", "<Left>", { desc = "move left" })
|
||||||
|
@ -27,7 +25,6 @@ map("n", "<F5>", "<cmd>DapToggleBreakpoint<cr>")
|
||||||
map("n", "mk", "<cmd>RustLsp moveItem upcr>")
|
map("n", "mk", "<cmd>RustLsp moveItem upcr>")
|
||||||
map("n", "m,", "<cmd>RustLsp moveItem down<cr>")
|
map("n", "m,", "<cmd>RustLsp moveItem down<cr>")
|
||||||
map("n", "rs", "<cmd>RustLsp run<cr>")
|
map("n", "rs", "<cmd>RustLsp run<cr>")
|
||||||
map("n", "hh", "<cmd>RustLsp hover actions<cr>")
|
|
||||||
map("n", "ca", "<cmd>RustLsp codeAction<cr>")
|
map("n", "ca", "<cmd>RustLsp codeAction<cr>")
|
||||||
map("n", "<C-s>", "<cmd>w!<cr>")
|
map("n", "<C-s>", "<cmd>w!<cr>")
|
||||||
map("i", "<C-s>", "<cmd>w!<cr>")
|
map("i", "<C-s>", "<cmd>w!<cr>")
|
||||||
|
@ -52,3 +49,9 @@ map("n", "<leader>an", "<cmd>set norelativenumber<cr>")
|
||||||
map("n", "tt", "<cmd>ToggleTerm<cr>")
|
map("n", "tt", "<cmd>ToggleTerm<cr>")
|
||||||
map("n", "<C-{>", "<cmd>foldopen<cr>")
|
map("n", "<C-{>", "<cmd>foldopen<cr>")
|
||||||
map("n", "<C-}>", "<cmd>foldclose<cr>")
|
map("n", "<C-}>", "<cmd>foldclose<cr>")
|
||||||
|
|
||||||
|
map("n", "hh", require("hover").hover, {desc = "hover.nvim"})
|
||||||
|
map("n", "hs", require("hover").hover_select, {desc = "hover.nvim (select)"})
|
||||||
|
map("n", "<C-Tab>", function() require("hover").hover_switch("previous") end, {desc = "hover.nvim (previous source)"})
|
||||||
|
map("n", "<C-S-Tab>", function() require("hover").hover_switch("next") end, {desc = "hover.nvim (next source)"})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue