-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathDefault (OSX).sublime-keymap
More file actions
30 lines (27 loc) · 958 Bytes
/
Default (OSX).sublime-keymap
File metadata and controls
30 lines (27 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[
// Steal open command and use it for iOpener.
{ "keys": ["super+o"], "command": "i_opener" },
// Allow over-riding of iOpener, and show normal system dialog.
{ "keys": ["super+shift+o"], "command": "prompt_open_file" },
////////////////////////////////////////////////////////////////////////////
// Do not edit //
////////////////////////////////////////////////////////////////////////////
{
"keys": ["tab"],
"command": "i_opener_complete",
"context": [{"key": "i_opener"}]
},
{
"keys": ["up"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "up"}
},
{
"keys": ["down"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "down"}
}
////////////////////////////////////////////////////////////////////////////
]