Skip to content

Instantly share code, notes, and snippets.

@keegoid
Last active January 1, 2020 06:01
Show Gist options
  • Save keegoid/fe269f34f133cbab11fd3ba91bd3a1ad to your computer and use it in GitHub Desktop.
Save keegoid/fe269f34f133cbab11fd3ba91bd3a1ad to your computer and use it in GitHub Desktop.
Sublime Text 3 user keymap for Linux
[
{ "keys": ["ctrl+shift+up"], "command": "scroll_lines", "args": {"amount": 1.0 } },
{ "keys": ["ctrl+shift+down"], "command": "scroll_lines", "args": {"amount": -1.0 } },
{ "keys": ["ctrl+up"], "command": "swap_line_up" },
{ "keys": ["ctrl+down"], "command": "swap_line_down" },
{ "keys": ["alt+up"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+down"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["ctrl+alt+e"], "command": "kite_toggle_popular_patterns" },
{ "keys": ["ctrl+alt+p"], "command": "project_manager", "args": {"action": "switch"} },
{ "keys": ["ctrl+alt+j"], "command": "js_prettier" },
{ "keys": ["ctrl+alt+m"], "command": "markdown_lint" },
{ "keys": ["ctrl+alt+8"], "command": "auto_pep8", "args": {"preview": false} },
{ "keys": ["ctrl+shift+t"], "command": "markdown_table_format", "context": [
{"key": "selector", "operator": "equal", "operand": "text.html.markdown"} ]
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment