mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-30 01:25:50 -05:00
Adds blame "references" (wip)
This commit is contained in:
15
src/constants.ts
Normal file
15
src/constants.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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' | 'editor.action.showReferences';
|
||||
export const VsCodeCommands = {
|
||||
ExecuteDocumentSymbolProvider: 'vscode.executeDocumentSymbolProvider' as VsCodeCommands,
|
||||
ShowReferences: 'editor.action.showReferences' as VsCodeCommands
|
||||
}
|
||||
Reference in New Issue
Block a user