Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/src/extension/chatSessions/common/builtinSlashCommands.ts
13399 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
/**
7
* Built-in slash commands used in the UI of Agents app.
8
*/
9
export const builtinSlashCommands = {
10
commit: '/commit',
11
sync: '/sync',
12
merge: '/merge',
13
createPr: '/create-pr',
14
createDraftPr: '/create-draft-pr',
15
updatePr: '/update-pr',
16
};
17
18