-
Notifications
You must be signed in to change notification settings - Fork 603
/
Copy pathexecuteCommands.ts
29 lines (24 loc) · 1.15 KB
/
executeCommands.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import * as vscode from 'vscode';
export namespace contexts {
export const VIEWED_FILES = 'github:viewedFiles';
export const UNVIEWED_FILES = 'github:unviewedFiles';
export const IN_REVIEW_MODE = 'github:inReviewMode';
export const REPOS_NOT_IN_REVIEW_MODE = 'github:reposNotInReviewMode';
export const REPOS_IN_REVIEW_MODE = 'github:reposInReviewMode';
export const ACTIVE_PR_COUNT = 'github:activePRCount';
}
export namespace commands {
export function executeCommand(command: string, arg1?: any, arg2?: any) {
return vscode.commands.executeCommand(command, arg1, arg2);
}
export function focusView(viewId: string) {
return executeCommand(`${viewId}.focus`);
}
export function setContext(context: string, value: any) {
return executeCommand('setContext', context, value);
}
}