Last Updated: February 25, 2016
·
1.155K
· zmetser

Show Sublime Text console with web inspector's key binding

Add this snippet to your .sublime-keymap file and save.
Now you're able to open ST console with cmd + alt + j

{
  "keys": [
    "command+alt+j"
  ],
  "command": "show_panel",
  "args": {
    "panel": "console",
    "toggle": true
  }
}