From 5445d3e7baa4bfbc7af0514d9e6f17fee0351c6c Mon Sep 17 00:00:00 2001 From: Chris Apple <14171107+cjappl@users.noreply.github.com> Date: Sun, 10 Mar 2024 10:22:14 -0700 Subject: [PATCH] Add missing pipe --- bin/git-forgit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-forgit b/bin/git-forgit index 98748fb..be5ffd6 100755 --- a/bin/git-forgit +++ b/bin/git-forgit @@ -222,7 +222,7 @@ _forgit_diff_view() { if [ $# -gt 2 ]; then IFS=" " read -r -a commits <<< "${*:3}" fi - echo "$input_line" | _forgit_get_files_from_diff_line | xargs -0 \ + echo "$input_line" | _forgit_get_files_from_diff_line | xargs -0 | \ "$FORGIT" exec_diff "${commits[@]}" -U"$diff_context" -- | $_forgit_diff_pager }