Exit command mode in sublime text 2

Text EditorSublimetext2

Text Editor Problem Overview


I just started using sublime text 2 and when I go into command mode I can't get out.

How do I exit out?

Text Editor Solutions


Solution 1 - Text Editor

Escape puts you into command mode; i takes you back out.

Solution 2 - Text Editor

... And, if you want to avoid entering in the command mod when pressing ESC key, add the following ignored packages in your sublime preferences:

"ignored_packages":
[
    "Vintage"
]

Solution 3 - Text Editor

It looks like by default in Preferences > Settings - Default this is enabled

"ignored_packages": ["Vintage"]

but then it's overwritten in Settings - User by

"ignored_packages": [
]

so copy the setting from Settings - Default to Settings - User That worked for me.

Solution 4 - Text Editor

As in Vim, to exit the command mode, press i insert to keep the cursor exactly where it is positioned.

But, since it requires a lot of hand-movements, I personally hate pressing i everytime.

So, while fiddling around with Sublime, I found that pressing a also took you back into normal mode, although the cursor advances by one character (append as correctly pointed out by Chris), I think I'll take that over i.

So, ESC to enter, a to exit the command mode.

Solution 5 - Text Editor

Use the Escape key or Ctrl/Command + ~ (tilde)

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
QuestionLuis LizView Question on Stackoverflow
Solution 1 - Text EditorrunningRhetoricView Answer on Stackoverflow
Solution 2 - Text EditorMr WashingtonView Answer on Stackoverflow
Solution 3 - Text EditorPawelView Answer on Stackoverflow
Solution 4 - Text EditorkumarharshView Answer on Stackoverflow
Solution 5 - Text EditorCarlinView Answer on Stackoverflow