From aea58342b68a53c58bd6f14aa9ea8b44d713d368 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 26 Jul 2023 01:28:37 +0200 Subject: code-review-difftool: Use newer vim-fugitive diff command The Fugitive documentation says that `Gdiff` is deprecated. In the current version, you need to use the `Gvdiffsplit` command to get a side-by-side diff with a vertical split. --- code-review-difftool | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-review-difftool b/code-review-difftool index 87a332a..aabce9a 100755 --- a/code-review-difftool +++ b/code-review-difftool @@ -29,5 +29,5 @@ review_base_without_dots="${review_base%%?(..|...)}" vim \ -n \ - -c "tabdo Gdiff $review_base_without_dots" \ + -c "tabdo Gvdiffsplit $review_base_without_dots" \ -p $(code-review changed-files) -- cgit v1.2.3