Skip to content

Instantly share code, notes, and snippets.

@AntouanK
Last active December 23, 2015 02:48
Show Gist options
  • Select an option

  • Save AntouanK/6568850 to your computer and use it in GitHub Desktop.

Select an option

Save AntouanK/6568850 to your computer and use it in GitHub Desktop.
Default (Linux).sublime-keymap
[
{ "keys": ["ctrl+w"], "command": "find_under_expand_skip" },
{ "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": ["alt+shift+right"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.3, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
},
{
"keys": ["alt+shift+left"],
"command": "set_layout",
"args":
{
"cols": [0.0, 0.7, 1.0],
"rows": [0.0, 1.0],
"cells": [[0, 0, 1, 1], [1, 0, 2, 1]]
}
}
]
// ctrl+w : skip net find result
// ctrl+space : auto_complete stuff
// alt+shift+right : right column gets to 70%
// alt+shift+left : left column gets to 70%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment