Skip to content

Instantly share code, notes, and snippets.

@thorsummoner
Last active March 16, 2017 16:25
Show Gist options
  • Save thorsummoner/8167955 to your computer and use it in GitHub Desktop.
Save thorsummoner/8167955 to your computer and use it in GitHub Desktop.
Sublime text 3 Linux keymap to be more like my bloody Windows keymap.
[
{ "keys": ["ctrl+q"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+q"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+shift+w"], "command": "close" },
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false },
{ "key": "setting.tab_completion", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+shift+z"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
{ "keys": ["ctrl+shift+w"], "command": "toggle_setting", "args": {"setting": "word_wrap"}},
{ "keys": ["ctrl+shift+t"], "command": "reopen_last_file" },
// { "keys": ["ctrl+t"], "command": "open_terminal" },
{ "keys": ["ctrl+t"], "command": "new_file" },
{ "keys": ["ctrl+shift+x"], "command": "join_lines" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment