зеркало из https://github.com/microsoft/git.git
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:
Родитель
2ce4fee878
Коммит
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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче