Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/editor/contrib/hover/browser/hoverActionIds.ts
5256 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
import * as nls from '../../../../nls.js';
6
7
export const SHOW_OR_FOCUS_HOVER_ACTION_ID = 'editor.action.showHover';
8
export const SHOW_DEFINITION_PREVIEW_HOVER_ACTION_ID = 'editor.action.showDefinitionPreviewHover';
9
export const HIDE_HOVER_ACTION_ID = 'editor.action.hideHover';
10
export const SCROLL_UP_HOVER_ACTION_ID = 'editor.action.scrollUpHover';
11
export const SCROLL_DOWN_HOVER_ACTION_ID = 'editor.action.scrollDownHover';
12
export const SCROLL_LEFT_HOVER_ACTION_ID = 'editor.action.scrollLeftHover';
13
export const SCROLL_RIGHT_HOVER_ACTION_ID = 'editor.action.scrollRightHover';
14
export const PAGE_UP_HOVER_ACTION_ID = 'editor.action.pageUpHover';
15
export const PAGE_DOWN_HOVER_ACTION_ID = 'editor.action.pageDownHover';
16
export const GO_TO_TOP_HOVER_ACTION_ID = 'editor.action.goToTopHover';
17
export const GO_TO_BOTTOM_HOVER_ACTION_ID = 'editor.action.goToBottomHover';
18
export const INCREASE_HOVER_VERBOSITY_ACTION_ID = 'editor.action.increaseHoverVerbosityLevel';
19
export const INCREASE_HOVER_VERBOSITY_ACCESSIBLE_ACTION_ID = 'editor.action.increaseHoverVerbosityLevelFromAccessibleView';
20
export 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");
21
export const DECREASE_HOVER_VERBOSITY_ACTION_ID = 'editor.action.decreaseHoverVerbosityLevel';
22
export const DECREASE_HOVER_VERBOSITY_ACCESSIBLE_ACTION_ID = 'editor.action.decreaseHoverVerbosityLevelFromAccessibleView';
23
export 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");
24
25