-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.02 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.02 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ssmskeymap",
"displayName": "SSMS Keymap",
"description": "This extension ports popular SSMS keyboard shortcuts to Azure Data Studio. After installing the extension and restarting Ops Studio your favorite keyboard shortcuts from SSMS are now available.",
"version": "1.1.0",
"publisher": "kevcunnane",
"engines": {
"vscode": "^1.19.0",
"sqlops": "*"
},
"categories": [
"Keymaps"
],
"repository": {
"type": "git",
"url": "https://github.com/kevcunnane/ssmskeymap.git"
},
"bugs": {
"url": "https://github.com/kevcunnane/ssmskeymap/issues"
},
"icon": "visualstudio-keyboard.png",
"contributes": {
"keybindings": [
{
"key": "shift+cmd+e",
"command": "runQueryKeyboardAction"
},
{
"key": "ctrl+cmd+e",
"command": "workbench.view.explorer"
},
{
"key": "alt+f1",
"command": "workbench.action.query.shortcut1"
},
{
"key": "shift+alt+enter",
"command": "workbench.action.toggleFullScreen"
},
{
"key": "f8",
"command": "workbench.view.connections"
},
{
"key": "ctrl+m",
"command": "runCurrentQueryWithActualPlanKeyboardAction"
},
{
"key": "ctrl+e",
"command": "runQueryKeyboardAction",
"when": "queryEditorVisible"
},
{
"key": "alt+x",
"command": "runQueryKeyboardAction",
"when": "queryEditorVisible"
},
{
"key": "ctrl+r",
"command": "toggleQueryResultsKeyboardAction",
"when": "queryEditorVisible"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.openRecent"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.quickOpenNavigatePreviousInRecentFilesPicker",
"when": "inQuickOpen && inRecentFilesPicker"
},
{
"key": "ctrl+shift+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "ctrl+shift+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+]",
"command": "editor.action.jumpToBracket"
},
{
"key": "ctrl+shift+]",
"command": "editor.action.indentLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+r",
"command": "refreshIntellisenseKeyboardAction",
"when": "editorTextFocus && !editorReadonly"
}
]
}
}