mirror of
https://github.com/sadan4/nvim.git
synced 2025-01-18 03:03:29 -05:00
add c-c remap
This commit is contained in:
parent
5fc347a599
commit
e7a5ddfc41
2 changed files with 3 additions and 0 deletions
|
@ -87,6 +87,8 @@ vim.keymap.set("n", "<Right>", ':echoe "Use l"<CR>')
|
|||
vim.keymap.set("n", "<Up>", ':echoe "Use k"<CR>')
|
||||
vim.keymap.set("n", "<Down>", ':echoe "Use j"<CR>')
|
||||
|
||||
vim.keymap.set({"i", "v", "n"}, "<C-c>", '<CMD>echoe "Use caps"<CR>')
|
||||
|
||||
vim.keymap.set("i", "<Left>", '<ESC>:echoe "Use h"<CR>i')
|
||||
vim.keymap.set("i", "<Right>", '<ESC>:echoe "Use l"<CR>i')
|
||||
vim.keymap.set("i", "<Up>", '<ESC>:echoe "Use k"<CR>i')
|
||||
|
|
|
@ -25,6 +25,7 @@ end)
|
|||
vim.keymap.set("n", "<leader>lg", function ()
|
||||
vsc.action("lazygit.openLazygit")
|
||||
end)
|
||||
vim.keymap.set({"n", "i", "v"}, "<C-c>", "<CMD>echoe \"Use Caps\"<CR>")
|
||||
-- for some reason, this plugin does not work with keymaps that start with <C-f>
|
||||
-- they are done through vsc
|
||||
--
|
||||
|
|
Loading…
Reference in a new issue