开发者

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

开发者 https://www.devze.com 2023-02-12 04:29 出处:网络
What\'s the difference between Ctrl+C and Ctrl+[? The documents contain the following that I can find:

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 |Ins开发者_JAVA百科ertLeave| 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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消