Skip to content

Commit 818b4db

Browse files
committed
add bindings
1 parent b79e536 commit 818b4db

File tree

1 file changed

+109
-0
lines changed

1 file changed

+109
-0
lines changed

data/key-binding/default.json

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
{
2+
"name": "Default Key Bindings",
3+
"pages": [
4+
{
5+
"name": "DataManager",
6+
"bindings": [
7+
{
8+
"keys": [
9+
"Ctrl+E",
10+
"Ctrl+Enter"
11+
],
12+
"action": "executeQuery",
13+
"description": "Execute query"
14+
}, {
15+
"keys": [
16+
"Ctrl+Shift+K"
17+
],
18+
"action": "saveQuery",
19+
"description": "Execute selected text as query"
20+
}, {
21+
"keys": [
22+
"Ctrl+Shift+O"
23+
],
24+
"action": "executeQueryWithoutShowingNativeSQL",
25+
"description": "Execute query without showing native SQL"
26+
}
27+
]
28+
}, {
29+
"name": "TestSuite",
30+
"bindings": [
31+
{
32+
"keys": [
33+
"Alt+N",
34+
"Alt+dead"
35+
],
36+
"action": "openNewTestCaseDialog",
37+
"description": "Open new test case dialog"
38+
}, {
39+
"keys": [
40+
"Alt+S",
41+
"Alt+ß"
42+
],
43+
"action": "saveTestSuite",
44+
"description": "Save test suite"
45+
}
46+
]
47+
}, {
48+
"name": "TestCase",
49+
"bindings": [
50+
{
51+
"keys": [
52+
"Alt+S",
53+
"Alt+ß"
54+
],
55+
"action": "sendRequest",
56+
"description": "Send the request"
57+
}, {
58+
"keys": [
59+
"Alt+KeyD"
60+
],
61+
"action": "openDuplicateTestCaseDialog",
62+
"description": "Duplicate the test case"
63+
}, {
64+
"keys": [
65+
"Alt+KeyO"
66+
],
67+
"action": "openOutputTab",
68+
"description": "Open the output tab"
69+
}, {
70+
"keys": [
71+
"Alt+KeyB"
72+
],
73+
"action": "openBodyTab",
74+
"description": "Open the body tab"
75+
}, {
76+
"keys": [
77+
"Alt+KeyH"
78+
],
79+
"action": "openHeaderTab",
80+
"description": "Open the header tab"
81+
}, {
82+
"keys": [
83+
"Alt+KeyQ"
84+
],
85+
"action": "openQueryTab",
86+
"description": "Open the query tab"
87+
}
88+
]
89+
}, {
90+
"name": "StoreManager",
91+
"bindings": [
92+
{
93+
"keys": [
94+
"Alt+KeyE",
95+
"Ctrl+N"
96+
],
97+
"action": "addStore",
98+
"description": "Add a new store"
99+
}, {
100+
"keys": [
101+
"Alt+KeyR"
102+
],
103+
"action": "loadStores",
104+
"description": "Refresh the store lis"
105+
}
106+
]
107+
}
108+
]
109+
}

0 commit comments

Comments
 (0)