Adds blame "references" (wip)

This commit is contained in:
Eric Amodio
2016-08-10 03:08:18 -04:00
parent 53bebc89f2
commit b08044fc18
12 changed files with 298 additions and 43 deletions

15
src/constants.ts Normal file
View 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
}