Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Exit command mode in sublime text 2

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

How do I exit out?

like image 418
Luis Liz Avatar asked Jul 06 '12 16:07

Luis Liz


People also ask

How do I open Sublime Text from command prompt?

Open any program file in the sublime editor and Right-click (context menu). You can see the Cmd menu in the Context menu options. Click on it. The command prompt will be opened through which you can compile and run your program.

How do I enable VIM mode in Sublime Text?

Press ctrl+shift+p and write Vintageous: Toggle Vim Ctrl Keys . You can see the other settings here and just change them in the user preferences.

What is the Run command in Sublime Text?

To run the code, press Command B or go to Tools -> Build. As you can see, my Sublime Text is running Python 2.7.

Can you use Vim in sublime?

Sublime vintage modeI have been using Sublime Text with vintage mode on, which allows these basic vim commands to be available. So far, I haven't had any problems that weren't solvable by adding a custom key binding while using vintage mode.


2 Answers

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

like image 175
runningRhetoric Avatar answered Oct 19 '22 17:10

runningRhetoric


... 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"
]
like image 73
Mr Washington Avatar answered Oct 19 '22 19:10

Mr Washington