Skip to content

Instantly share code, notes, and snippets.

@peko
Created July 5, 2015 22:43
Show Gist options
  • Save peko/edafd5f15e58252524f0 to your computer and use it in GitHub Desktop.
Save peko/edafd5f15e58252524f0 to your computer and use it in GitHub Desktop.
Sublime hotkeys
[
{ "keys": ["alt+n"], "command": "move", "args": {"by": "characters", "forward": false} },
{ "keys": ["alt+e"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["alt+o"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["alt+i"], "command": "move", "args": {"by": "characters", "forward": true} },
{ "keys": ["shift+alt+n"], "command": "move", "args": {"by": "characters", "forward": false, "extend": true} },
{ "keys": ["shift+alt+i"], "command": "move", "args": {"by": "characters", "forward": true, "extend": true} },
{ "keys": ["shift+alt+o"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} },
{ "keys": ["shift+alt+e"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} },
{ "keys": ["ctrl+alt+o"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["ctrl+alt+e"], "command": "select_lines", "args": {"forward": true} },
{
"keys": ["alt+.", "<character>"],
"command": "easy_motion",
"args": {"select_text": false}
},
{
"keys": ["alt+.", "enter"],
"command": "easy_motion",
"args": {"select_text": false, "character": "enter"}
},
{
"keys": ["alt+shift+.", "<character>"],
"command": "easy_motion",
"args": {"select_text": true}
},
{
"keys": ["alt+shift+.", "enter"],
"command": "easy_motion",
"args": {"select_text": true, "character": "enter"}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment