From Vim documentation:

Additionally the command CTRL-\ CTRL-N or <C-\><C-N> can be used to go to Normal mode from any other mode.

So what is the difference between CTRL-\ and <C-\>?

Thanks

link|improve this question

60% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Absolutely nothing. <C- > is vim's notation for holding Ctrl.

link|improve this answer
feedback

Both CTRL-\ and '<C-\>` refer to the same key combination, the only difference is notation. Since that documentation came from the introduction, the author probably want to make sure the reader understood what key combination was meant. See also:

:help key-notation
:help <character>
:help CTRL-{char}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.