-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathDefault (OSX).sublime-keymap
More file actions
47 lines (47 loc) · 1.64 KB
/
Default (OSX).sublime-keymap
File metadata and controls
47 lines (47 loc) · 1.64 KB
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
[
{ "keys": ["super+f3"], "command": "java_goto_definition", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["super+f4"], "command": "java_goto_usages", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["super+f5"], "command": "subclim_go_back", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["super+alt+i"], "command": "java_import_class_under_cursor" , "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["super+alt+i"], "command": "java_import_class_under_cursor" , "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.scala" }
]
},
{ "keys": ["ctrl+super+r"], "command": "java_run_class", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["ctrl+super+r"], "command": "scala_run_class", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.scala" }
]
},
{ "keys": ["ctrl+alt+space"], "command": "manual_completion_request", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["ctrl+alt+space"], "command": "manual_completion_request", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.scala" }
]
}
]