-
Notifications
You must be signed in to change notification settings - Fork 3
/
Default (OSX).sublime-keymap
25 lines (25 loc) · 1.3 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
[
{"keys": ["up"], "command": "socket_history", "args": {"i":-1},
"context": [
{"key": "setting.socket", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }]},
{"keys": ["down"], "command": "socket_history", "args": {"i":1},
"context": [
{"key": "setting.socket", "operator": "equal", "operand": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }]},
{"keys": ["enter"], "command": "socket_enter", "args": {},
"context": [
{"key": "setting.socket", "operator": "equal", "operand": true },
{"key": "auto_complete_visible", "operator": "equal", "operand": false }]},
{"keys": ["backspace"], "command": "socket_block", "args": {},
"context": [
{"key": "setting.noback", "operator": "equal", "operand": true }]},
{"keys": ["ctrl+shift+x"], "command": "socket_clear", "args": {},
"context": []},
{ "keys": ["ctrl+c"], "command": "socket_connect" },
{ "keys": ["ctrl+s"], "command": "socket_send_selection" },
{ "keys": ["ctrl+l"], "command": "socket_send_line" },
{ "keys": ["ctrl+b"], "command": "socket_send_block" },
{ "keys": ["ctrl+p"], "command": "socket_send_paragraph" },
{ "keys": ["ctrl+f"], "command": "socket_send_file", "args": { "show_code": true } }
]