Path: blob/main/src/vs/editor/contrib/hover/browser/hoverActionIds.ts
5256 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/4import * as nls from '../../../../nls.js';56export const SHOW_OR_FOCUS_HOVER_ACTION_ID = 'editor.action.showHover';7export const SHOW_DEFINITION_PREVIEW_HOVER_ACTION_ID = 'editor.action.showDefinitionPreviewHover';8export const HIDE_HOVER_ACTION_ID = 'editor.action.hideHover';9export const SCROLL_UP_HOVER_ACTION_ID = 'editor.action.scrollUpHover';10export const SCROLL_DOWN_HOVER_ACTION_ID = 'editor.action.scrollDownHover';11export const SCROLL_LEFT_HOVER_ACTION_ID = 'editor.action.scrollLeftHover';12export const SCROLL_RIGHT_HOVER_ACTION_ID = 'editor.action.scrollRightHover';13export const PAGE_UP_HOVER_ACTION_ID = 'editor.action.pageUpHover';14export const PAGE_DOWN_HOVER_ACTION_ID = 'editor.action.pageDownHover';15export const GO_TO_TOP_HOVER_ACTION_ID = 'editor.action.goToTopHover';16export const GO_TO_BOTTOM_HOVER_ACTION_ID = 'editor.action.goToBottomHover';17export const INCREASE_HOVER_VERBOSITY_ACTION_ID = 'editor.action.increaseHoverVerbosityLevel';18export const INCREASE_HOVER_VERBOSITY_ACCESSIBLE_ACTION_ID = 'editor.action.increaseHoverVerbosityLevelFromAccessibleView';19export const INCREASE_HOVER_VERBOSITY_ACTION_LABEL = nls.localize({ key: 'increaseHoverVerbosityLevel', comment: ['Label for action that will increase the hover verbosity level.'] }, "Increase Hover Verbosity Level");20export const DECREASE_HOVER_VERBOSITY_ACTION_ID = 'editor.action.decreaseHoverVerbosityLevel';21export const DECREASE_HOVER_VERBOSITY_ACCESSIBLE_ACTION_ID = 'editor.action.decreaseHoverVerbosityLevelFromAccessibleView';22export const DECREASE_HOVER_VERBOSITY_ACTION_LABEL = nls.localize({ key: 'decreaseHoverVerbosityLevel', comment: ['Label for action that will decrease the hover verbosity level.'] }, "Decrease Hover Verbosity Level");232425