Key mapper changes

This commit is contained in:
Norm Rasmussen
2022-11-15 17:17:06 -05:00
parent 8289645293
commit 45026a2eaa
6 changed files with 41 additions and 29 deletions

View File

@ -13,7 +13,6 @@ local telescope_installer = require('telescope').setup({
-- map actions.which_key to <C-h> (default: <C-/>)
-- actions.which_key shows the mappings for your picker,
-- e.g. git_{create, delete, ...}_branch for the git_branches picker
["<C-h>"] = "which_key"
}
}
},
@ -29,6 +28,10 @@ local telescope_installer = require('telescope').setup({
hijack_netrw = true,
mappings = {
["i"] = {
["<C-c>"] = fb_actions.create,
["<C-r>"] = fb_actions.remove,
["<C-p>"] = fb_actions.copy,
["<C-m>"] = fb_actions.move,
},
["n"] = {
@ -39,3 +42,4 @@ local telescope_installer = require('telescope').setup({
})
require("telescope").load_extension "file_browser"
require("telescope").load_extension "mapper"