-
Notifications
You must be signed in to change notification settings - Fork 4
/
Default (OSX).sublime-keymap
47 lines (46 loc) · 1.02 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[
{
"keys": ["alt+enter"],
"command": "pgcli_run_all",
"context": [
{"key": "selector",
"operand": "source.sql"}
]
},
{
"keys": ["ctrl+alt+enter"],
"command": "pgcli_run_current",
"context": [
{"key": "selector",
"operand": "source.sql"}
]
},
{
"keys": ["alt+`"],
"command": "pgcli_show_output_panel"
},
{
"keys": ["ctrl+f12"],
"command": "pgcli_open_cli"
},
{
"keys": ["alt+f12"],
"command": "pgcli_new_sublime_repl"
},
{
"keys": ["ctrl+alt+shift+n"],
"command": "pgcli_new_sql_file"
},
{
"keys": ["ctrl+alt+shift+c"],
"command": "pgcli_switch_connection_string"
},
{
"keys": ["f1"],
"command": "pgcli_describe_table",
"context": [
{"key": "selector",
"operand": "source.sql"}
]
}
]