diff options
author | Teddy Wing | 2023-07-26 01:28:37 +0200 |
---|---|---|
committer | Teddy Wing | 2023-07-26 01:28:37 +0200 |
commit | aea58342b68a53c58bd6f14aa9ea8b44d713d368 (patch) | |
tree | e5971081dac24e0e36f015fc399fd04296b0299b /code-review-difftool | |
parent | 3fe7ef327a13087b3e229aade87afb625e31b55c (diff) | |
download | code-review-aea58342b68a53c58bd6f14aa9ea8b44d713d368.tar.bz2 |
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.
Diffstat (limited to 'code-review-difftool')
-rwxr-xr-x | code-review-difftool | 2 |
1 files changed, 1 insertions, 1 deletions
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) |