mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add toggle query history capture command/action (#7427)
* Add toggle query history capture command/action * Add extension updates
This commit is contained in:
committed by
Karl Burtram
parent
7cbc268c52
commit
4018a29a16
@@ -10,7 +10,7 @@
|
||||
"aiKey": "AIF-444c3af9-8e69-4462-ab49-4191e6ad1916",
|
||||
"engines": {
|
||||
"vscode": "^1.30.1",
|
||||
"azdata": ">=1.9.0"
|
||||
"azdata": ">=1.12.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"*"
|
||||
@@ -28,12 +28,20 @@
|
||||
"command": "queryHistory.clear",
|
||||
"title": "%queryHistory.clear%",
|
||||
"category": "%queryHistory.displayName%"
|
||||
},
|
||||
{
|
||||
"command": "queryHistory.toggleCapture",
|
||||
"title": "%queryHistory.toggleCapture%",
|
||||
"category": "%queryHistory.displayName%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "queryHistory.clear"
|
||||
},
|
||||
{
|
||||
"command": "queryHistory.toggleCapture"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"queryHistory.displayName": "Query History",
|
||||
"queryHistory.description": "View and run previously executed queries",
|
||||
"queryHistory.clear": "Clear All History"
|
||||
"queryHistory.clear": "Clear All History",
|
||||
"queryHistory.toggleCapture": "Toggle Query History Capture"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user