git-jump: ignore (custom) prefix in diff mode
Matching the default file prefix b/ does not yield any results if config option diff.noprefix or diff.mnemonicprefix is enabled. Signed-off-by: Mischa POSLAWSKY <git@shiar.nl> Acked-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2ce4fee878
commit
6108b04b70
@ -21,9 +21,9 @@ open_editor() {
|
||||
}
|
||||
|
||||
mode_diff() {
|
||||
git diff --relative "$@" |
|
||||
git diff --no-prefix --relative "$@" |
|
||||
perl -ne '
|
||||
if (m{^\+\+\+ b/(.*)}) { $file = $1; next }
|
||||
if (m{^\+\+\+ (.*)}) { $file = $1; next }
|
||||
defined($file) or next;
|
||||
if (m/^@@ .*\+(\d+)/) { $line = $1; next }
|
||||
defined($line) or next;
|
||||
|
Loading…
Reference in New Issue
Block a user