What's the difference between Ctrl+C and Ctrl+[?

VimKey

Vim Problem Overview


What's the difference between Ctrl+C and Ctrl+[? The documents contain the following that I can find:

<Esc> or CTRL-[ End insert or Replace mode, go back to Normal mode.  Finish
abbreviation.
Note: If your <Esc> key is hard to hit on your keyboard, train yourself to use CTRL-[.

CTRL-C          Quit insert mode, go back to Normal mode.  Do not check for
abbreviations.  Does not trigger the |InsertLeave| autocommand
event.

CTRL-C                  Interrupt current (search) command.  Use CTRL-Break on
MS-DOS |dos-CTRL-Break|.
In Normal mode, any pending command is aborted.

It seems there is some disagreement to what exactly the commands do.

Does Ctrl+C not also leave Replace mode, and how do abbreviations relate to pending commands?

Vim Solutions


Solution 1 - Vim

It helps to think of CtrlC in vim the same way you think of CtrlC in a shell - you want to stop whatever you were doing ASAP and get control back. So in vim, if you're using CtrlC to break out of insert mode, vim isn't going to bother checking if you just wrote part of an abbreviation, and it isn't going to run the fancy auto commands your plugins have set up for every time you leave insert mode, it's just going to dump you back in normal mode as soon as it can. If you're not using abbreviations or autocmds, then you're not going to notice this difference.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMatt JoinerView Question on Stackoverflow
Solution 1 - Vimtoo much phpView Answer on Stackoverflow