How to Change Sublime Text's Keyboard Shortcuts
Changing the keyboard shortcuts in Sublime Text is quick and easy:
Open Sublime Text
Press
Ctrl + Shift + P
Type the word
key
Select
Preferences: Key Bindings
Edit the file
Keyboard Shortcuts example:
[
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["ctrl+i"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+shift+j"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+shift+l"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+shift+i"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["ctrl+shift+k"], "command": "move", "args": {"by": "pages", "forward": true} },
]
The settings above can be interpreted as:
Ctrl + j
move caret to leftCtrl + l
move caret to rightCtrl + i
move caret upCtrl + k
move caret downCtrl + Shift + j
homeCtrl + Shift + l
endCtrl + Shift + i
page upCtrl + Shift + k
page down
Note: Modifying keyboard shortcuts will overwrite the default settings.
Sublime Text Stable Build 4143