mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-16 18:48:45 -05:00
Changes shortcut keys for diff with previous commands
Adds diff with next command Fixes #45 - Keyboard Shortcut collision with Project Manager Preps v2.11.2
This commit is contained in:
@@ -1,5 +1,14 @@
|
|||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### 2.11.2
|
||||||
|
- Adds `gitlens.diffWithNext` command to open a diff with the next commit
|
||||||
|
- Adds `alt+.` shortcut for the `gitlens.diffWithNext` command
|
||||||
|
- Changes `shift+alt+p` shortcut to `alt+,` for the `gitlens.diffWithPrevious` command
|
||||||
|
- Changes `alt+p` shortcut to `shift+alt+,` for the `gitlens.diffLineWithPrevious` command
|
||||||
|
- Removes `gitlens.toggleCodeLens` from Command Palette when not available
|
||||||
|
- Removes `gitlens.toggleCodeLens` shortcut key when not available
|
||||||
|
- Fixes (#45)[https://github.com/eamodio/vscode-gitlens/issues/45] - Keyboard Shortcut collision with Project Manager
|
||||||
|
|
||||||
### 2.11.1
|
### 2.11.1
|
||||||
- Adds blame and active line annotation support to git diff split view (right side)
|
- Adds blame and active line annotation support to git diff split view (right side)
|
||||||
- Adds command (compare, copy sha/message, etc) support to git diff split view (right side)
|
- Adds command (compare, copy sha/message, etc) support to git diff split view (right side)
|
||||||
|
|||||||
25
package.json
25
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "gitlens",
|
"name": "gitlens",
|
||||||
"version": "2.11.1",
|
"version": "2.11.2",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Eric Amodio",
|
"name": "Eric Amodio",
|
||||||
"email": "eamodio@gmail.com"
|
"email": "eamodio@gmail.com"
|
||||||
@@ -356,6 +356,11 @@
|
|||||||
"title": "Directory Compare",
|
"title": "Directory Compare",
|
||||||
"category": "GitLens"
|
"category": "GitLens"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "gitlens.diffWithNext",
|
||||||
|
"title": "Compare with Next Commit",
|
||||||
|
"category": "GitLens"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffWithPrevious",
|
"command": "gitlens.diffWithPrevious",
|
||||||
"title": "Compare with Previous Commit",
|
"title": "Compare with Previous Commit",
|
||||||
@@ -465,6 +470,10 @@
|
|||||||
"command": "gitlens.diffDirectory",
|
"command": "gitlens.diffDirectory",
|
||||||
"when": "gitlens:enabled"
|
"when": "gitlens:enabled"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "gitlens.diffWithNext",
|
||||||
|
"when": "gitlens:enabled"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffWithPrevious",
|
"command": "gitlens.diffWithPrevious",
|
||||||
"when": "gitlens:enabled"
|
"when": "gitlens:enabled"
|
||||||
@@ -695,16 +704,22 @@
|
|||||||
"mac": "alt+c",
|
"mac": "alt+c",
|
||||||
"when": "editorTextFocus && gitlens:enabled"
|
"when": "editorTextFocus && gitlens:enabled"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "gitlens.diffWithNext",
|
||||||
|
"key": "alt+.",
|
||||||
|
"mac": "alt+.",
|
||||||
|
"when": "editorTextFocus && gitlens:enabled"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffLineWithPrevious",
|
"command": "gitlens.diffLineWithPrevious",
|
||||||
"key": "alt+p",
|
"key": "shift+alt+,",
|
||||||
"mac": "alt+p",
|
"mac": "shift+alt+,",
|
||||||
"when": "editorTextFocus && gitlens:enabled"
|
"when": "editorTextFocus && gitlens:enabled"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"command": "gitlens.diffWithPrevious",
|
"command": "gitlens.diffWithPrevious",
|
||||||
"key": "shift+alt+p",
|
"key": "alt+,",
|
||||||
"mac": "shift+alt+p",
|
"mac": "alt+,",
|
||||||
"when": "editorTextFocus && gitlens:enabled"
|
"when": "editorTextFocus && gitlens:enabled"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
import { commands, Disposable, TextEditor, window } from 'vscode';
|
import { commands, Disposable, TextEditor, window } from 'vscode';
|
||||||
|
import { BuiltInCommands } from './constants';
|
||||||
|
|
||||||
export class ActiveEditorTracker extends Disposable {
|
export class ActiveEditorTracker extends Disposable {
|
||||||
|
|
||||||
@@ -28,11 +29,11 @@ export class ActiveEditorTracker extends Disposable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async close(): Promise<{}> {
|
async close(): Promise<{}> {
|
||||||
return commands.executeCommand('workbench.action.closeActiveEditor');
|
return commands.executeCommand(BuiltInCommands.CloseActiveEditor);
|
||||||
}
|
}
|
||||||
|
|
||||||
async next(): Promise<{}> {
|
async next(): Promise<{}> {
|
||||||
return commands.executeCommand('workbench.action.nextEditor');
|
return commands.executeCommand(BuiltInCommands.NextEditor);
|
||||||
}
|
}
|
||||||
|
|
||||||
async wait(timeout: number = 500): Promise<TextEditor> {
|
async wait(timeout: number = 500): Promise<TextEditor> {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ export { CopyShaToClipboardCommand } from './commands/copyShaToClipboard';
|
|||||||
export { DiffDirectoryCommand } from './commands/diffDirectory';
|
export { DiffDirectoryCommand } from './commands/diffDirectory';
|
||||||
export { DiffLineWithPreviousCommand } from './commands/diffLineWithPrevious';
|
export { DiffLineWithPreviousCommand } from './commands/diffLineWithPrevious';
|
||||||
export { DiffLineWithWorkingCommand } from './commands/diffLineWithWorking';
|
export { DiffLineWithWorkingCommand } from './commands/diffLineWithWorking';
|
||||||
|
export { DiffWithNextCommand } from './commands/diffWithNext';
|
||||||
export { DiffWithPreviousCommand } from './commands/diffWithPrevious';
|
export { DiffWithPreviousCommand } from './commands/diffWithPrevious';
|
||||||
export { DiffWithWorkingCommand } from './commands/diffWithWorking';
|
export { DiffWithWorkingCommand } from './commands/diffWithWorking';
|
||||||
export { OpenChangedFilesCommand } from './commands/openChangedFiles';
|
export { OpenChangedFilesCommand } from './commands/openChangedFiles';
|
||||||
|
|||||||
@@ -2,12 +2,13 @@
|
|||||||
import { commands, Disposable, TextEditor, TextEditorEdit, Uri, window, workspace } from 'vscode';
|
import { commands, Disposable, TextEditor, TextEditorEdit, Uri, window, workspace } from 'vscode';
|
||||||
import { BuiltInCommands } from '../constants';
|
import { BuiltInCommands } from '../constants';
|
||||||
|
|
||||||
export type Commands = 'gitlens.closeUnchangedFiles' | 'gitlens.copyMessageToClipboard' | 'gitlens.copyShaToClipboard' | 'gitlens.diffDirectory' | 'gitlens.diffWithPrevious' | 'gitlens.diffLineWithPrevious' | 'gitlens.diffWithWorking' | 'gitlens.diffLineWithWorking' | 'gitlens.openChangedFiles' | 'gitlens.showBlame' | 'gitlens.showBlameHistory' | 'gitlens.showFileHistory' | 'gitlens.showQuickCommitDetails' | 'gitlens.showQuickCommitFileDetails' | 'gitlens.showQuickFileHistory' | 'gitlens.showQuickRepoHistory' | 'gitlens.showQuickRepoStatus' | 'gitlens.toggleBlame' | 'gitlens.toggleCodeLens';
|
export type Commands = 'gitlens.closeUnchangedFiles' | 'gitlens.copyMessageToClipboard' | 'gitlens.copyShaToClipboard' | 'gitlens.diffDirectory' | 'gitlens.diffWithNext' | 'gitlens.diffWithPrevious' | 'gitlens.diffLineWithPrevious' | 'gitlens.diffWithWorking' | 'gitlens.diffLineWithWorking' | 'gitlens.openChangedFiles' | 'gitlens.showBlame' | 'gitlens.showBlameHistory' | 'gitlens.showFileHistory' | 'gitlens.showQuickCommitDetails' | 'gitlens.showQuickCommitFileDetails' | 'gitlens.showQuickFileHistory' | 'gitlens.showQuickRepoHistory' | 'gitlens.showQuickRepoStatus' | 'gitlens.toggleBlame' | 'gitlens.toggleCodeLens';
|
||||||
export const Commands = {
|
export const Commands = {
|
||||||
CloseUnchangedFiles: 'gitlens.closeUnchangedFiles' as Commands,
|
CloseUnchangedFiles: 'gitlens.closeUnchangedFiles' as Commands,
|
||||||
CopyMessageToClipboard: 'gitlens.copyMessageToClipboard' as Commands,
|
CopyMessageToClipboard: 'gitlens.copyMessageToClipboard' as Commands,
|
||||||
CopyShaToClipboard: 'gitlens.copyShaToClipboard' as Commands,
|
CopyShaToClipboard: 'gitlens.copyShaToClipboard' as Commands,
|
||||||
DiffDirectory: 'gitlens.diffDirectory' as Commands,
|
DiffDirectory: 'gitlens.diffDirectory' as Commands,
|
||||||
|
DiffWithNext: 'gitlens.diffWithNext' as Commands,
|
||||||
DiffWithPrevious: 'gitlens.diffWithPrevious' as Commands,
|
DiffWithPrevious: 'gitlens.diffWithPrevious' as Commands,
|
||||||
DiffLineWithPrevious: 'gitlens.diffLineWithPrevious' as Commands,
|
DiffLineWithPrevious: 'gitlens.diffLineWithPrevious' as Commands,
|
||||||
DiffWithWorking: 'gitlens.diffWithWorking' as Commands,
|
DiffWithWorking: 'gitlens.diffWithWorking' as Commands,
|
||||||
|
|||||||
@@ -60,6 +60,7 @@ export class DiffLineWithPreviousCommand extends ActiveEditorCommand {
|
|||||||
this.git.getVersionedFile(commit.uri.fsPath, commit.repoPath, commit.sha)
|
this.git.getVersionedFile(commit.uri.fsPath, commit.repoPath, commit.sha)
|
||||||
]);
|
]);
|
||||||
await commands.executeCommand(BuiltInCommands.Diff, Uri.file(lhs), Uri.file(rhs), `${path.basename(commit.uri.fsPath)} (${commit.sha}) ↔ ${path.basename(gitUri.fsPath)} (${gitUri.sha})`);
|
await commands.executeCommand(BuiltInCommands.Diff, Uri.file(lhs), Uri.file(rhs), `${path.basename(commit.uri.fsPath)} (${commit.sha}) ↔ ${path.basename(gitUri.fsPath)} (${gitUri.sha})`);
|
||||||
|
// TODO: Figure out how to focus the left pane
|
||||||
return await commands.executeCommand(BuiltInCommands.RevealLine, { lineNumber: line, at: 'center' });
|
return await commands.executeCommand(BuiltInCommands.RevealLine, { lineNumber: line, at: 'center' });
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
|
|||||||
74
src/commands/diffWithNext.ts
Normal file
74
src/commands/diffWithNext.ts
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
'use strict';
|
||||||
|
import { Iterables } from '../system';
|
||||||
|
import { commands, Range, TextEditor, Uri, window } from 'vscode';
|
||||||
|
import { ActiveEditorCommand, Commands } from './commands';
|
||||||
|
import { BuiltInCommands } from '../constants';
|
||||||
|
import { GitLogCommit, GitProvider, GitUri } from '../gitProvider';
|
||||||
|
import { Logger } from '../logger';
|
||||||
|
// import * as moment from 'moment';
|
||||||
|
import * as path from 'path';
|
||||||
|
|
||||||
|
export class DiffWithNextCommand extends ActiveEditorCommand {
|
||||||
|
|
||||||
|
constructor(private git: GitProvider) {
|
||||||
|
super(Commands.DiffWithNext);
|
||||||
|
}
|
||||||
|
|
||||||
|
async execute(editor: TextEditor): Promise<any>;
|
||||||
|
async execute(editor: TextEditor, uri: Uri): Promise<any>;
|
||||||
|
async execute(editor: TextEditor, uri: Uri, commit: GitLogCommit, range?: Range): Promise<any>;
|
||||||
|
async execute(editor: TextEditor, uri: Uri, commit: GitLogCommit, line?: number): Promise<any>;
|
||||||
|
async execute(editor: TextEditor, uri?: Uri, commit?: GitLogCommit, rangeOrLine?: Range | number): Promise<any> {
|
||||||
|
if (!(uri instanceof Uri)) {
|
||||||
|
if (!editor || !editor.document) return undefined;
|
||||||
|
uri = editor.document.uri;
|
||||||
|
}
|
||||||
|
|
||||||
|
let line = (editor && editor.selection.active.line) || 0;
|
||||||
|
if (typeof rangeOrLine === 'number') {
|
||||||
|
line = rangeOrLine || line;
|
||||||
|
rangeOrLine = undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!commit || !(commit instanceof GitLogCommit) || rangeOrLine instanceof Range) {
|
||||||
|
const gitUri = await GitUri.fromUri(uri, this.git);
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (!gitUri.sha) {
|
||||||
|
// If the file is uncommitted, treat it as a DiffWithWorking
|
||||||
|
if (await this.git.isFileUncommitted(gitUri.fsPath, gitUri.repoPath)) {
|
||||||
|
return commands.executeCommand(Commands.DiffWithWorking, uri);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const sha = (commit && commit.sha) || gitUri.sha;
|
||||||
|
|
||||||
|
const log = await this.git.getLogForFile(gitUri.fsPath, undefined, gitUri.repoPath, rangeOrLine as Range, sha ? undefined : 2);
|
||||||
|
if (!log) return window.showWarningMessage(`Unable to open diff. File is probably not under source control`);
|
||||||
|
|
||||||
|
commit = (sha && log.commits.get(sha)) || Iterables.first(log.commits.values());
|
||||||
|
}
|
||||||
|
catch (ex) {
|
||||||
|
Logger.error('[GitLens.DiffWithNextCommand]', `getLogForFile(${gitUri.fsPath})`, ex);
|
||||||
|
return window.showErrorMessage(`Unable to open diff. See output channel for more details`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!commit.nextSha) {
|
||||||
|
return commands.executeCommand(Commands.DiffWithWorking, uri);
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const [rhs, lhs] = await Promise.all([
|
||||||
|
this.git.getVersionedFile(commit.nextUri.fsPath, commit.repoPath, commit.nextSha),
|
||||||
|
this.git.getVersionedFile(commit.uri.fsPath, commit.repoPath, commit.sha)
|
||||||
|
]);
|
||||||
|
await commands.executeCommand(BuiltInCommands.Diff, Uri.file(lhs), Uri.file(rhs), `${path.basename(commit.uri.fsPath)} (${commit.sha}) ↔ ${path.basename(commit.nextUri.fsPath)} (${commit.nextSha})`);
|
||||||
|
return await commands.executeCommand(BuiltInCommands.RevealLine, { lineNumber: line, at: 'center' });
|
||||||
|
}
|
||||||
|
catch (ex) {
|
||||||
|
Logger.error('[GitLens.DiffWithNextCommand]', 'getVersionedFile', ex);
|
||||||
|
return window.showErrorMessage(`Unable to open diff. See output channel for more details`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -64,6 +64,7 @@ export class DiffWithPreviousCommand extends ActiveEditorCommand {
|
|||||||
this.git.getVersionedFile(commit.previousUri.fsPath, commit.repoPath, commit.previousSha)
|
this.git.getVersionedFile(commit.previousUri.fsPath, commit.repoPath, commit.previousSha)
|
||||||
]);
|
]);
|
||||||
await commands.executeCommand(BuiltInCommands.Diff, Uri.file(lhs), Uri.file(rhs), `${path.basename(commit.previousUri.fsPath)} (${commit.previousSha}) ↔ ${path.basename(commit.uri.fsPath)} (${commit.sha})`);
|
await commands.executeCommand(BuiltInCommands.Diff, Uri.file(lhs), Uri.file(rhs), `${path.basename(commit.previousUri.fsPath)} (${commit.previousSha}) ↔ ${path.basename(commit.uri.fsPath)} (${commit.sha})`);
|
||||||
|
// TODO: Figure out how to focus the left pane
|
||||||
return await commands.executeCommand(BuiltInCommands.RevealLine, { lineNumber: line, at: 'center' });
|
return await commands.executeCommand(BuiltInCommands.RevealLine, { lineNumber: line, at: 'center' });
|
||||||
}
|
}
|
||||||
catch (ex) {
|
catch (ex) {
|
||||||
|
|||||||
@@ -2,14 +2,16 @@
|
|||||||
|
|
||||||
export const RepoPath = 'repoPath';
|
export const RepoPath = 'repoPath';
|
||||||
|
|
||||||
export type BuiltInCommands = 'cursorMove' | 'editor.action.showReferences' | 'editor.action.toggleRenderWhitespace' | 'editorScroll' | 'revealLine' | 'setContext' | 'vscode.diff' | 'vscode.executeDocumentSymbolProvider' | 'vscode.executeCodeLensProvider' | 'vscode.open';
|
export type BuiltInCommands = 'cursorMove' | 'editor.action.showReferences' | 'editor.action.toggleRenderWhitespace' | 'editorScroll' | 'revealLine' | 'setContext' | 'vscode.diff' | 'vscode.executeDocumentSymbolProvider' | 'vscode.executeCodeLensProvider' | 'vscode.open' | 'workbench.action.closeActiveEditor' | 'workbench.action.nextEditor';
|
||||||
export const BuiltInCommands = {
|
export const BuiltInCommands = {
|
||||||
|
CloseActiveEditor: 'workbench.action.closeActiveEditor' as BuiltInCommands,
|
||||||
CursorMove: 'cursorMove' as BuiltInCommands,
|
CursorMove: 'cursorMove' as BuiltInCommands,
|
||||||
Diff: 'vscode.diff' as BuiltInCommands,
|
Diff: 'vscode.diff' as BuiltInCommands,
|
||||||
EditorScroll: 'editorScroll' as BuiltInCommands,
|
EditorScroll: 'editorScroll' as BuiltInCommands,
|
||||||
ExecuteDocumentSymbolProvider: 'vscode.executeDocumentSymbolProvider' as BuiltInCommands,
|
ExecuteDocumentSymbolProvider: 'vscode.executeDocumentSymbolProvider' as BuiltInCommands,
|
||||||
ExecuteCodeLensProvider: 'vscode.executeCodeLensProvider' as BuiltInCommands,
|
ExecuteCodeLensProvider: 'vscode.executeCodeLensProvider' as BuiltInCommands,
|
||||||
Open: 'vscode.open' as BuiltInCommands,
|
Open: 'vscode.open' as BuiltInCommands,
|
||||||
|
NextEditor: 'workbench.action.nextEditor' as BuiltInCommands,
|
||||||
RevealLine: 'revealLine' as BuiltInCommands,
|
RevealLine: 'revealLine' as BuiltInCommands,
|
||||||
SetContext: 'setContext' as BuiltInCommands,
|
SetContext: 'setContext' as BuiltInCommands,
|
||||||
ShowReferences: 'editor.action.showReferences' as BuiltInCommands,
|
ShowReferences: 'editor.action.showReferences' as BuiltInCommands,
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import { configureCssCharacters } from './blameAnnotationFormatter';
|
|||||||
import { CommandContext, setCommandContext } from './commands';
|
import { CommandContext, setCommandContext } from './commands';
|
||||||
import { CloseUnchangedFilesCommand, OpenChangedFilesCommand } from './commands';
|
import { CloseUnchangedFilesCommand, OpenChangedFilesCommand } from './commands';
|
||||||
import { CopyMessageToClipboardCommand, CopyShaToClipboardCommand } from './commands';
|
import { CopyMessageToClipboardCommand, CopyShaToClipboardCommand } from './commands';
|
||||||
import { DiffDirectoryCommand, DiffLineWithPreviousCommand, DiffLineWithWorkingCommand, DiffWithPreviousCommand, DiffWithWorkingCommand} from './commands';
|
import { DiffDirectoryCommand, DiffLineWithPreviousCommand, DiffLineWithWorkingCommand, DiffWithNextCommand, DiffWithPreviousCommand, DiffWithWorkingCommand} from './commands';
|
||||||
import { ShowBlameCommand, ToggleBlameCommand } from './commands';
|
import { ShowBlameCommand, ToggleBlameCommand } from './commands';
|
||||||
import { ShowBlameHistoryCommand, ShowFileHistoryCommand } from './commands';
|
import { ShowBlameHistoryCommand, ShowFileHistoryCommand } from './commands';
|
||||||
import { ShowQuickCommitDetailsCommand, ShowQuickCommitFileDetailsCommand, ShowQuickFileHistoryCommand, ShowQuickRepoHistoryCommand, ShowQuickRepoStatusCommand} from './commands';
|
import { ShowQuickCommitDetailsCommand, ShowQuickCommitFileDetailsCommand, ShowQuickFileHistoryCommand, ShowQuickRepoHistoryCommand, ShowQuickRepoStatusCommand} from './commands';
|
||||||
@@ -93,10 +93,11 @@ export async function activate(context: ExtensionContext) {
|
|||||||
context.subscriptions.push(new CopyMessageToClipboardCommand(git, repoPath));
|
context.subscriptions.push(new CopyMessageToClipboardCommand(git, repoPath));
|
||||||
context.subscriptions.push(new CopyShaToClipboardCommand(git, repoPath));
|
context.subscriptions.push(new CopyShaToClipboardCommand(git, repoPath));
|
||||||
context.subscriptions.push(new DiffDirectoryCommand(git, repoPath));
|
context.subscriptions.push(new DiffDirectoryCommand(git, repoPath));
|
||||||
context.subscriptions.push(new DiffWithWorkingCommand(git));
|
|
||||||
context.subscriptions.push(new DiffLineWithWorkingCommand(git));
|
|
||||||
context.subscriptions.push(new DiffWithPreviousCommand(git));
|
|
||||||
context.subscriptions.push(new DiffLineWithPreviousCommand(git));
|
context.subscriptions.push(new DiffLineWithPreviousCommand(git));
|
||||||
|
context.subscriptions.push(new DiffLineWithWorkingCommand(git));
|
||||||
|
context.subscriptions.push(new DiffWithNextCommand(git));
|
||||||
|
context.subscriptions.push(new DiffWithPreviousCommand(git));
|
||||||
|
context.subscriptions.push(new DiffWithWorkingCommand(git));
|
||||||
context.subscriptions.push(new ShowBlameCommand(annotationController));
|
context.subscriptions.push(new ShowBlameCommand(annotationController));
|
||||||
context.subscriptions.push(new ToggleBlameCommand(annotationController));
|
context.subscriptions.push(new ToggleBlameCommand(annotationController));
|
||||||
context.subscriptions.push(new ShowBlameHistoryCommand(git));
|
context.subscriptions.push(new ShowBlameHistoryCommand(git));
|
||||||
|
|||||||
@@ -200,9 +200,11 @@ export class GitLogParserEnricher implements IGitEnricher<IGitLog> {
|
|||||||
|
|
||||||
if (recentCommit) {
|
if (recentCommit) {
|
||||||
recentCommit.previousSha = commit.sha;
|
recentCommit.previousSha = commit.sha;
|
||||||
|
commit.nextSha = recentCommit.sha;
|
||||||
// Only add a filename if this is a file log
|
// Only add a filename if this is a file log
|
||||||
if (type === 'file') {
|
if (type === 'file') {
|
||||||
recentCommit.previousFileName = commit.originalFileName || commit.fileName;
|
recentCommit.previousFileName = commit.originalFileName || commit.fileName;
|
||||||
|
commit.nextFileName = recentCommit.originalFileName || recentCommit.fileName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
recentCommit = commit;
|
recentCommit = commit;
|
||||||
|
|||||||
@@ -108,6 +108,8 @@ export type GitLogType = 'file' | 'repo';
|
|||||||
export class GitLogCommit extends GitCommit {
|
export class GitLogCommit extends GitCommit {
|
||||||
|
|
||||||
fileStatuses: { status: GitFileStatus, fileName: string }[];
|
fileStatuses: { status: GitFileStatus, fileName: string }[];
|
||||||
|
nextSha?: string;
|
||||||
|
nextFileName?: string;
|
||||||
status: GitFileStatus;
|
status: GitFileStatus;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
@@ -135,6 +137,10 @@ export class GitLogCommit extends GitCommit {
|
|||||||
this.fileStatuses = [{ status: status, fileName: fileName }];
|
this.fileStatuses = [{ status: status, fileName: fileName }];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get nextUri(): Uri {
|
||||||
|
return this.nextFileName ? Uri.file(path.join(this.repoPath, this.nextFileName)) : this.uri;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IGitCommitLine {
|
export interface IGitCommitLine {
|
||||||
|
|||||||
Reference in New Issue
Block a user