monners
9/17/2015 - 6:24 AM

User keymap for sublime text 3 setup

User keymap for sublime text 3 setup

[
	{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
	{ "keys": ["ctrl+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
	{ "keys": ["ctrl+shift+a"], "command": "move_to", "args": {"to": "bol", "extend": true} },
	{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "subword_ends", "forward": true} },
	{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "subwords", "forward": false} },
	{ "keys": ["ctrl+shift+j"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
	{ "keys": ["ctrl+shift+k"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
	{ "keys": ["super+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
	{ "keys": ["ctrl+super+p"], "command": "swap_line_up" },
	{ "keys": ["ctrl+super+n"], "command": "swap_line_down" },
	{ "keys": ["super+\\"], "command": "toggle_side_bar" }
]