mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
* Add max entries to query history * Update query history README * Add loading text to query history view * add comment
17 lines
854 B
TypeScript
17 lines
854 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
export const QUERY_HISTORY_CONFIG_SECTION = 'queryHistory';
|
|
export const CAPTURE_ENABLED_CONFIG_SECTION = 'captureEnabled';
|
|
export const DOUBLE_CLICK_ACTION_CONFIG_SECTION = 'doubleClickAction';
|
|
export const PERSIST_HISTORY_CONFIG_SECTION = 'persistHistory';
|
|
export const MAX_ENTRIES_CONFIG_SECTION = 'maxEntries';
|
|
|
|
export const ITEM_SELECTED_COMMAND_ID = 'queryHistory.itemSelected';
|
|
|
|
export const CONTEXT_LOADING = 'queryHistory.loading';
|
|
export const CONTEXT_NOENTRIES = 'queryHistory.noEntries';
|
|
|