Im using Neovim with lua and iterm2 terminal and want to bind ctrl+j to 7j or ctrl+k 7k using neovim with lua and iterm2.
I've tried the following but its not working.
keymap.set("n", "<C-k>", "7k", {remap = true, silent = true})
keymap.set("n", "<C-j>", "7j", {remap = true, silent = true})
Using something like keymap.set("n", "<C-a>", "7j", {remap = true, silent = true}) works, but its not wat I want.
Feels like there are some other keybindings in the way blocking ctrl+k and ctrl+j.
try to use which key to figure out the keybindings