mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-14 10:03:15 -05:00
23 lines
846 B
TypeScript
23 lines
846 B
TypeScript
export type WorkspaceState = 'repoPath';
|
|
export const WorkspaceState = {
|
|
RepoPath: 'repoPath' as WorkspaceState
|
|
}
|
|
|
|
export const RepoPath: string = 'repoPath';
|
|
|
|
export type Commands = 'git.action.showBlameHistory';
|
|
export const Commands = {
|
|
ShowBlameHistory: 'git.action.showBlameHistory' as Commands
|
|
}
|
|
|
|
export type DocumentSchemes = 'gitblame';
|
|
export const DocumentSchemes = {
|
|
GitBlame: 'gitblame' as DocumentSchemes
|
|
}
|
|
|
|
export type VsCodeCommands = 'vscode.executeDocumentSymbolProvider' | 'vscode.executeCodeLensProvider' | 'editor.action.showReferences';
|
|
export const VsCodeCommands = {
|
|
ExecuteDocumentSymbolProvider: 'vscode.executeDocumentSymbolProvider' as VsCodeCommands,
|
|
ExecuteCodeLensProvider: 'vscode.executeCodeLensProvider' as VsCodeCommands,
|
|
ShowReferences: 'editor.action.showReferences' as VsCodeCommands
|
|
} |