Sublime Forum

Change "i" to "insert" for insert mode

#1

hi guys,

i’m customizing my keybindings for vintage mode and i would like to change “i” to “insert” whenever i want to change to insert mode from command mode.
i checked the forum and could not find any thread that is related to my problem.

TIA

0 Likes

#2

Try
…\Sublime\Data\Packages\Vintage\Default.sublime-keymap

change FROM:
{ “keys”: **“i”], **“command”: “enter_insert_mode”, “context”: {“key”: “setting.command_mode”}] },

TO smtg like:
{ “keys”: “i”,“n”,“s”], “command”: “enter_insert_mode”, “context”: {“key”: “setting.command_mode”}] },

0 Likes

#3

thank you! it worked. :smiley:

where can i find the list for available commands? a documentation for this should be handy :smiley:

0 Likes