forked from wuub/SublimeREPL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (OSX).sublime-keymap
29 lines (28 loc) · 1.29 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
[
{ "keys": ["ctrl+p"], "command": "repl_view_previous",
"context":
[
{ "key": "setting.repl", "operator": "equal", "operand": true }
]
},
{ "keys": ["ctrl+n"], "command": "repl_view_next",
"context":
[
{ "key": "setting.repl", "operator": "equal", "operand": true }
]
},
{ "keys": ["enter"], "command": "repl_enter", "args": {},
"context":
[
{ "key": "setting.repl", "operator": "equal", "operand": true }
]
}
//{ "keys": ["f2", "s"], "command": "repl_transfer_current", "args": {"scope": "selection"}},
//{ "keys": ["shift+f2", "s"], "command": "repl_transfer_current", "args": {"scope": "selection", "action":"view_write"}},
//{ "keys": ["f2", "f"], "command": "repl_transfer_current", "args": {"scope": "file"}},
//{ "keys": ["shift+f2", "f"], "command": "repl_transfer_current", "args": {"scope": "file", "action":"view_write"}},
//{ "keys": ["f2", "l"], "command": "repl_transfer_current", "args": {"scope": "lines"}},
//{ "keys": ["shift+f2", "l"], "command": "repl_transfer_current", "args": {"scope": "lines", "action":"view_write"}},
//{ "keys": ["f2", "b"], "command": "repl_transfer_current", "args": {"scope": "block"}},
//{ "keys": ["shift+f2", "b"], "command": "repl_transfer_current", "args": {"scope": "block", "action":"view_write"}}
]