TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Stop hitting ESC in Vim

3 pointsby ihucosover 6 years ago
Ctrl-C is much much easier on the fingers. There are only a few case where this does not work so well like in the visual block mode, generally I think its really nicer than ESC.

2 comments

gryover 6 years ago
FWIW, Ctrl-[ is ESC&#x27;s equivalent.<p>Ctrl-C escapes insert mode, and does not check for abbreviations. It has a different behavior.<p><pre><code> &lt;Esc&gt; or CTRL-[ End insert or Replace mode, go back to Normal mode. Finish abbreviation. Note: If your &lt;Esc&gt; key is hard to hit on your keyboard, train yourself to use CTRL-[. If Esc doesn&#x27;t work and you are using a Mac, try CTRL-Esc. Or disable Listening under Accessibility preferences. i_CTRL-C CTRL-C Quit insert mode, go back to Normal mode. Do not check for abbreviations. Does not trigger the InsertLeave autocommand event. </code></pre> <a href="https:&#x2F;&#x2F;vimhelp.appspot.com&#x2F;insert.txt.html" rel="nofollow">https:&#x2F;&#x2F;vimhelp.appspot.com&#x2F;insert.txt.html</a>
jstewartmobileover 6 years ago
Or Alt + any motion key...