0

I would like to remap ctrl-w-w (switch buffer) to the comma. I tried some combinations with inoremap and remap, but i can't get it to work.

Any solutions?

garritfra
  • 546
  • 4
  • 21
  • inoremap aims to define a new behavior only in insert mode. you can prefix by [nvi] remap and no remap to make shortcuts which will depend of the current mode – LLenain May 25 '18 at 11:42

1 Answers1

5

This should work:

noremap , <C-w>w
Axnyff
  • 9,213
  • 4
  • 33
  • 37