Sublime Text 2: Disable cursor position overwriting characters (like vim replace mode)

sublime-text-2

I'm not sure how, but I managed to get Sublime Text into a 'Replace Mode' which at whatever position the cursor is at, it overwrites the next character with whatever you press instead of inserting it.

How do return back to 'Insert' mode?

I couldn't see any option for it in the menu and searching on Google yielded completely irrelevant results.

For the record, I'm using OS X Mountain Lion, and I have the non-extended keyboard (without the number pad).

Best Answer

If you go to Preferences->Key Bindings (Default) and search for "overwrite" you'll find the key binding. At least on Windows it's set to the Insert key. You probably managed to hit some key combo to emulate that key on your keyboard. If it happens again and you can't figure out how to get out, just change it to CtrlAltShiftI (unused in my default setup) and you should be good to go. Make sure that you put this entire line in your Preferences->Key Bindings (User) file, in between the square brackets:

{ "keys": ["ctrl+alt+shift+i"], "command": "toggle_overwrite" },

The , at the end is only needed if you have additional entries in the file.

Related Question