Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/contrib/comments/common/commentCommandIds.ts
3296 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
6
export const enum CommentCommandId {
7
Add = 'workbench.action.addComment',
8
FocusCommentOnCurrentLine = 'workbench.action.focusCommentOnCurrentLine',
9
NextThread = 'editor.action.nextCommentThreadAction',
10
PreviousThread = 'editor.action.previousCommentThreadAction',
11
NextCommentedRange = 'editor.action.nextCommentedRangeAction',
12
PreviousCommentedRange = 'editor.action.previousCommentedRangeAction',
13
NextRange = 'editor.action.nextCommentingRange',
14
PreviousRange = 'editor.action.previousCommentingRange',
15
ToggleCommenting = 'workbench.action.toggleCommenting',
16
Submit = 'editor.action.submitComment',
17
Hide = 'workbench.action.hideComment',
18
CollapseAll = 'workbench.action.collapseAllComments',
19
ExpandAll = 'workbench.action.expandAllComments',
20
ExpandUnresolved = 'workbench.action.expandUnresolvedComments'
21
}
22
23