Skip to content

Instantly share code, notes, and snippets.

@Asuza
Last active December 6, 2015 19:01
Show Gist options
  • Save Asuza/a529d930daaa2960fbe2 to your computer and use it in GitHub Desktop.
Save Asuza/a529d930daaa2960fbe2 to your computer and use it in GitHub Desktop.
Sublime Text 3 keyboard shortcut config for xiwi usage through crouton
[
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+alt+home"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["super+pagedown"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["super+pageup"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["alt+pagedown"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["alt+pageup"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+alt+end"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["alt+delete"], "command": "right_delete" },
{ "keys": ["alt+shift+pageup"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+shift+pagedown"], "command": "select_lines", "args": {"forward": true} }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment