Time to read: 2 min read
TIP
To edit key bindings on Sublime Text 3, go to Preferences > Key Bindings and edit the Default.sublime-keymap file which opens in the right hand pane.
Make sure to put all the commands in a single open [] brace and seperate each command with commas (otherwise the json parser will give you an error!)
{"keys": ["ctrl+alt+m"], "command": "toggle_menu"},
{ "keys": ["ctrl+shift+t"], "command": "toggle_tabs" },
TIP
The Terminus package is a very useful terminal package for Sublime Text. If you'd like to install it please see the official documentation here: https://packagecontrol.io/packages/Terminus
{ "keys": ["alt+`"], "command": "toggle_terminus_panel",
"args": {"cwd": "${file_path:${folder}}"}},
{"keys": ["ctrl+alt+i"], "command": "terminus_open", "args": {"cmd": "ipython",
"cwd": "${file_path:${folder}}"}},
{"keys": ["ctrl+alt+c"], "command": "exec", "args": {"kill": true}},
{"keys": ["alt+m"], "command": "open_markdown_preview"},
{ "keys": ["ctrl+f1"], "command": "hide_panel", "args": {"cancel": true}},