Forked from lmdemanuel/Default (OSX).sublime-keymap
Last active
March 26, 2024 09:06
-
-
Save portellaa/09e88d05d7b0fdd7dada to your computer and use it in GitHub Desktop.
Sublime Text 3 - User keybindings "a la Xcode"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": ["super+0"], "command": "toggle_side_bar" }, | |
{ "keys": ["super+shift+o"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, | |
{ "keys": ["super+shift+y"], "command": "show_panel", "args": {"panel": "console", "toggle": true} }, | |
{ | |
"keys": ["super+enter"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1]] | |
} | |
}, | |
{ | |
"keys": ["super+alt+enter"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.5, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
}, | |
// Advanced new file | |
{ "keys": ["super+ctrl+n"], "command": "advanced_new_file_new"}, | |
{ "keys": ["ctrl+super+alt+n"], "command": "advanced_new_file_new", "args": {"is_python": true}}, | |
// Django TDD | |
{ | |
"keys": ["super+alt+u","super+alt+."], "command": "run_python_test", | |
"context": [ | |
{"key": "selector", "operator": "equal", "operand": "source.python"} | |
] | |
}, | |
{ | |
"keys": ["super+alt+u","super+alt+t"], "command": "run_python_project_tests", | |
"context": [ | |
{"key": "selector", "operator": "equal", "operand": "source.python"} | |
] | |
}, | |
{ "keys": ["super+{"], "command": "prev_view" }, | |
{ "keys": ["super+}"], "command": "next_view" }, | |
{ "keys": ["super+shift+j"], "command": "reveal_in_side_bar"}, | |
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} }, | |
{ "keys": ["alt+super+["], "command": "swap_line_up" }, | |
{ "keys": ["alt+super+]"], "command": "swap_line_down" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment