-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDefault.sublime-keymap
41 lines (41 loc) · 2.02 KB
/
Default.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
[
{ "keys": ["f5"], "command": "csscript_execute_and_redirect"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["ctrl+f5"], "command": "csscript_execute_and_wait"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["f8"], "command": "csscript_format_code"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["f6"], "command": "csscript_pop_tooltip"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["f7"], "command": "csscript_syntax_check"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["alt+f7"], "command": "csscript_list_proj_files"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["shift+f7"], "command": "csscript_list_proj_sources"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["ctrl+."], "command": "csscript_resolve_using"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["f12"], "command": "csscript_goto_definition"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["shift+f12"], "command": "csscript_find_references"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["alt+o"], "command": "csscript_show_output_panel"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["f4"], "command": "csscript_next_result"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
{ "keys": ["ctrl+f4"], "command": "csscript_next_result"
, "context": [{ "key": "selector", "operator": "equal", "operand": "source.cs"}]
},
]