forked from JulianEberius/Subclim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (Linux).sublime-keymap
42 lines (42 loc) · 1.46 KB
/
Default (Linux).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
[
{ "keys": ["ctrl+f3"], "command": "java_goto_definition", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["ctrl+f4"], "command": "java_goto_usages", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["ctrl+f5"], "command": "subclim_go_back", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "keys": ["ctrl+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": ["shift+ctrl+r"], "command": "java_run_class", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.java" }
]
},
{ "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" }
]
}
]