Forked from coldnebo/Default (OSX).sublime-keymap -- User
Last active
May 13, 2016 00:34
-
-
Save Razoxane/d23d83ca3d7a7017991ed6fc6d96527f to your computer and use it in GitHub Desktop.
Jade's custom keymaps for Sublime Text 2
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
[ | |
/* Fixes Home/End keys for OSX */ | |
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol" } }, | |
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol" } }, | |
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }, | |
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true } }, | |
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bof" } }, | |
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eof" } }, | |
{ "keys": ["super+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true } }, | |
{ "keys": ["super+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true } }, | |
/* Fixes tab cycling order for OSX */ | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment