Remove some default keymaps which are on the same keymap namespace as
some lspsaga bindings making them slower to finalize.
This commit is contained in:
parent
6921ee9a12
commit
e1d2f81f32
1 changed files with 18 additions and 3 deletions
|
|
@ -17,13 +17,28 @@ local move_down = {
|
|||
}
|
||||
}
|
||||
|
||||
require("utils").add_keymaps({
|
||||
|
||||
local utils = require("utils")
|
||||
|
||||
utils.add_keymaps({
|
||||
n = {
|
||||
-- Using lspsaga for hover doc
|
||||
["K"] = {
|
||||
cmd = "nop",
|
||||
cmd = "<Nop>",
|
||||
},
|
||||
-- Using lspsaga finder with gr which does references
|
||||
["grr"] = {
|
||||
cmd = "<Nop>",
|
||||
},
|
||||
["gra"] = {
|
||||
cmd = "<Nop>",
|
||||
},
|
||||
["grn"] = {
|
||||
cmd = "<Nop>",
|
||||
},
|
||||
["gri"] = {
|
||||
cmd = "<Nop>",
|
||||
},
|
||||
|
||||
-- Navigation
|
||||
["<C-Left>"] = {
|
||||
cmd = "<C-w>h",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue