Adds user-defined key-bindings
This commit is contained in:
parent
46b758d648
commit
ec166d69a1
1 changed files with 27 additions and 0 deletions
27
Default (OSX).sublime-keymap
Normal file
27
Default (OSX).sublime-keymap
Normal file
|
@ -0,0 +1,27 @@
|
|||
[
|
||||
{ "keys": ["super+\\"], "command": "toggle_side_bar" },
|
||||
{ "keys": ["ctrl+tab"], "command": "next_view" },
|
||||
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
|
||||
{
|
||||
"keys": ["super+enter"],
|
||||
"command": "run_macro_file",
|
||||
"args": {
|
||||
"file": "res://Packages/Default/Add Line Before.sublime-macro"
|
||||
}
|
||||
},
|
||||
{
|
||||
"keys": ["j", "j"],
|
||||
"command": "_enter_normal_mode",
|
||||
"args": { "mode": "mode_insert" },
|
||||
"context": [{"key": "vi_insert_mode_aware"}]
|
||||
},
|
||||
{
|
||||
"keys": ["super+o"],
|
||||
"command": "show_panel",
|
||||
"args": { "panel": "console", "toggle": true }
|
||||
},
|
||||
{
|
||||
"keys": ["super+shift+o"],
|
||||
"command": "reveal_in_side_bar"
|
||||
}
|
||||
]
|
Loading…
Reference in a new issue