mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-05 01:25:38 -05:00
18 lines
808 B
TypeScript
18 lines
808 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as vscode from 'vscode';
|
|
|
|
export async function activate(context: vscode.ExtensionContext): Promise<void> {
|
|
// Currently all the functionality for this is contained within the core ADS
|
|
// code as the extensibility API doesn't currently support all the required
|
|
// functionality (such as contributing tab panels)
|
|
void vscode.commands.executeCommand('queryHistory.enableQueryHistory');
|
|
}
|
|
|
|
export async function deactivate(): Promise<void> {
|
|
|
|
}
|