forked from rosshemsley/iOpener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (OSX).sublime-keymap
88 lines (76 loc) · 2.37 KB
/
Default (OSX).sublime-keymap
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[
// 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" },
// Be especially careful editing the settings below.
// Auto-complete path key.
{
"keys": ["tab"],
"command": "i_opener_complete",
"context": [{"key": "i_opener"}]
},
// Scroll up through history.
{
"keys": ["up"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "up"}
},
// Scroll down through history.
{
"keys": ["down"],
"command": "i_opener_cycle_history",
"context": [{"key": "i_opener"}],
"args": {"direction": "down"}
},
// Scroll up through folder list.
{
"keys": ["super+up"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_up"}
},
// Scroll down through folder list.
{
"keys": ["super+down"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "scroll_down"}
},
// Show user's Home folder.
{
"keys": ["super+h"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_home_folder"}
},
// Show the folder of the current File.
{
"keys": ["super+f"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_file_folder"}
},
// Show the current Project folders.
{
"keys": ["super+p"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_project_folders"}
},
// Show the User defined folders; set by the "folders" setting.
{
"keys": ["super+u"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_user_folders"}
},
// Show All the folders; set by the "folder_sequence" setting.
{
"keys": ["super+a"],
"command": "i_opener_folder_list",
"context": [{"key": "i_opener"}],
"args": {"operation": "show_folder_sequence_folders"}
}
]