Path: blob/main/src/vs/workbench/contrib/comments/common/commentCommandIds.ts
3296 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*--------------------------------------------------------------------------------------------*/45export const enum CommentCommandId {6Add = 'workbench.action.addComment',7FocusCommentOnCurrentLine = 'workbench.action.focusCommentOnCurrentLine',8NextThread = 'editor.action.nextCommentThreadAction',9PreviousThread = 'editor.action.previousCommentThreadAction',10NextCommentedRange = 'editor.action.nextCommentedRangeAction',11PreviousCommentedRange = 'editor.action.previousCommentedRangeAction',12NextRange = 'editor.action.nextCommentingRange',13PreviousRange = 'editor.action.previousCommentingRange',14ToggleCommenting = 'workbench.action.toggleCommenting',15Submit = 'editor.action.submitComment',16Hide = 'workbench.action.hideComment',17CollapseAll = 'workbench.action.collapseAllComments',18ExpandAll = 'workbench.action.expandAllComments',19ExpandUnresolved = 'workbench.action.expandUnresolvedComments'20}212223