Created
May 23, 2014 17:36
-
-
Save djcommandline/7e334bb69520f9585002 to your computer and use it in GitHub Desktop.
subl 2 settings
This file contains 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
[ | |
// Move OPen File to Window Group | |
{ | |
"keys": ["super+alt+up"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1]] | |
} | |
}, | |
{ | |
"keys": ["super+alt+down"], | |
"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]] | |
} | |
}, | |
{ | |
"keys": ["super+alt+left"], | |
"command": "set_layout", | |
"args": | |
{ | |
"cols": [0.0, 0.66, 1.0], | |
"rows": [0.0, 1.0], | |
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
} | |
}, | |
{ "keys": ["alt+1"], "command": "move_to_group", "args": { "group": 0 } }, | |
{ "keys": ["super+alt+right"], "command": "move_to_group", "args": { "group": 1 } }, | |
{ "keys": ["alt+3"], "command": "move_to_group", "args": { "group": 2 } }, | |
{ "keys": ["alt+4"], "command": "move_to_group", "args": { "group": 3 } }, | |
// Advance File Create Plugin | |
{ "keys": ["n", "n"], "command": "advanced_new_file", | |
"context": [{ "key": "setting.command_mode", "operand": true }]}, | |
{ | |
"keys" : ["j", "j"], "command": "exit_insert_mode", | |
"context": | |
[ | |
{ "key": "setting.command_mode", "operand": false }, | |
{ "key": "setting.is_widget", "operand": false } | |
] | |
}, | |
// Move Cursor Outside of () or {} | |
{ "keys": ["enter"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
[ | |
{ "key": "following_text", "operator": "regex_contains", "operand": "^[)\"\\]]", "match_all": true }, | |
{ "key": "auto_complete_visible", "operator": "equal", "operand": false } | |
] | |
}, | |
{ "keys": ["super+shift+r"], "command": "reindent" , "args": {"single_line": false} }, | |
// Move Text | |
{ "keys": ["super+ctrl+left"], "command": "move_text_left" }, | |
{ "keys": ["super+ctrl+right"], "command": "move_text_right" }, | |
// https://github.com/rmaksim/Sublime-Text-2-Inc-Dec-Value | |
{ "keys": ["alt+up"], "command": "inc_dec_value", "args": { "action": "inc_min" } }, | |
{ "keys": ["alt+down"], "command": "inc_dec_value", "args": { "action": "dec_min" } }, | |
{ "keys": ["super+up"], "command": "inc_dec_value", "args": { "action": "inc_max" } }, | |
{ "keys": ["super+down"], "command": "inc_dec_value", "args": { "action": "dec_max" } }, | |
{ "keys": ["super+alt+up"], "command": "inc_dec_value", "args": { "action": "inc_all" } }, | |
{ "keys": ["super+alt+down"], "command": "inc_dec_value", "args": { "action": "dec_all" } }, | |
{"command": "toggle_single_line_css", "keys": ["ctrl+alt+j"]}, | |
{"command": "expand_to_css_rule", "keys": ["ctrl+alt+k"]} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment