forked from Southclaws/pawn-sublime-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.sublime-keymap
9 lines (9 loc) · 926 Bytes
/
Default.sublime-keymap
1
2
3
4
5
6
7
8
9
[
{ "keys": ["f3"], "command": "find_next", "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["f4"], "command": "find_prev", "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["ctrl+r"], "command": "show_panel", "args": {"panel": "output.exec"}, "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["f5"], "command": "build", "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["pause"], "command": "exec", "args": {"kill": true}, "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["ctrl+shift+r"], "command": "sequential_number_insert" },
{ "keys": ["ctrl+shift+f1"], "command": "open_wiki_on_string" }
]