Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
065ef47b2b | |||
702d3a6889 | |||
512df2948e | |||
![]() |
e81277ecb4 | ||
![]() |
4188c51081 | ||
![]() |
5702bf8e27 | ||
![]() |
732fad0a98 | ||
![]() |
c2809e6e0e | ||
731553906d | |||
c907c006db | |||
fdae5aa6de | |||
da5e24260a | |||
bb6fa28de0 | |||
e7744c8e9a | |||
da9eb32e36 | |||
7c11878345 |
80
README.md
80
README.md
@ -1,19 +1,57 @@
|
|||||||
# Usage
|
Do you use `git difftool` to review changes before making a commit? The problem with that is that you get to see the diff of one file at a time. You can't easily stop it after few files and you can't go back to a previous file. `vimtabdiff.py` loads all the files with diffs, one in each vim tab page. You can move around any file and edit the diffs easily.
|
||||||
```help
|
|
||||||
usage: vimtabdiff.py [-h] [--vim VIM] pathA pathB
|
|
||||||
|
|
||||||
Show diff of files from two directories in vim tabs
|
|
||||||
|
|
||||||
positional arguments:
|
# Install
|
||||||
pathA
|
|
||||||
pathB
|
|
||||||
|
|
||||||
options:
|
```bash
|
||||||
-h, --help show this help message and exit
|
mkdir -p ~/bin
|
||||||
--vim VIM vim command to run
|
|
||||||
|
# for python version >= 3.10
|
||||||
|
curl -o ~/bin/vimtabdiff.py "https://raw.githubusercontent.com/balki/vimtabdiff/master/vimtabdiff.py"
|
||||||
|
|
||||||
|
# for python version < 3.10
|
||||||
|
curl -o ~/bin/vimtabdiff.py "https://raw.githubusercontent.com/balki/vimtabdiff/br-py38/vimtabdiff.py"
|
||||||
|
|
||||||
|
chmod +x ~/bin/vimtabdiff.py
|
||||||
```
|
```
|
||||||
|
|
||||||
# Git difftool
|
You may need to add `~/bin` to your PATH variable if not already done. See [here](https://wiki.archlinux.org/title/Environment_variables#Per_user) for help.
|
||||||
|
👍 this [issue](https://github.com/balki/vimtabdiff/issues/1) for `pip install` support
|
||||||
|
|
||||||
|
|
||||||
|
# Screenshot
|
||||||
|

|
||||||
|
|
||||||
|
# Usage
|
||||||
|
```help
|
||||||
|
usage: vimtabdiff.py [-h] [--vim VIM] [--onlydiffs] pathA pathB
|
||||||
|
|
||||||
|
Show diff of files from two directories in vim tabs
|
||||||
|
|
||||||
|
positional arguments:
|
||||||
|
pathA
|
||||||
|
pathB
|
||||||
|
|
||||||
|
options:
|
||||||
|
-h, --help show this help message and exit
|
||||||
|
--vim VIM vim command to run
|
||||||
|
--onlydiffs only open files where there is a diff
|
||||||
|
```
|
||||||
|
|
||||||
|
## Relevant vim tips
|
||||||
|
|
||||||
|
* `gt` → Go to next tab
|
||||||
|
* `gT` → Go to previous tab
|
||||||
|
* `:tabr` → Go to first tab
|
||||||
|
* `:drop filenam<Tab>` → Go to the tab with filename
|
||||||
|
* `g<Tab>` → Go to last used tab (Works in vim version > 8.2.1401)
|
||||||
|
* `:set mouse=a` → Now clicking on a tab works
|
||||||
|
* `]c` → Go to next diff hunk
|
||||||
|
* `[c` → Go to previous diff hunk
|
||||||
|
* `do`, `dp` → Diff obtain, Diff put
|
||||||
|
* `zo`, `zc`, `zi` → Fold open, Fold close, toggle all folds
|
||||||
|
|
||||||
|
# See Git diffs
|
||||||
|
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
@ -34,30 +72,32 @@
|
|||||||
|
|
||||||
## Using custom vim command
|
## Using custom vim command
|
||||||
|
|
||||||
|
Using clean vim without reading `vimrc`
|
||||||
```bash
|
```bash
|
||||||
git config --global difftool.vimtabdiff.cmd 'vimtabdiff.py --vim "vim --clean" $LOCAL $REMOTE'
|
git config --global difftool.vimtabdiff.cmd 'vimtabdiff.py --vim "vim --clean" $LOCAL $REMOTE'
|
||||||
```
|
```
|
||||||
|
|
||||||
Git config file (`~/.gitconfig`) should look like this
|
Git config file (`~/.gitconfig`) should look like this
|
||||||
|
|
||||||
```toml
|
```TOML
|
||||||
[alias]
|
[alias]
|
||||||
...
|
...
|
||||||
dt = difftool --tool vimtabdiff --dir-diff
|
dt = difftool --tool vimtabdiff --dir-diff
|
||||||
[difftool "vimtabdiff"]
|
[difftool "vimtabdiff"]
|
||||||
cmd = vimtabdiff.py --vim \"vim --clean\" $LOCAL $REMOTE
|
cmd = vimtabdiff.py --vim \"vim --clean\" $LOCAL $REMOTE
|
||||||
```
|
```
|
||||||
|
Using better diff algorithm
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git config --global difftool.vimtabdiff.cmd 'vimtabdiff.py --vim "vim +\"set diffopt+=algorithm:patience\"" $LOCAL $REMOTE'
|
||||||
|
|
||||||
# Known issues
|
```
|
||||||
|
|
||||||
1. If your path to custom vim has space, it does not work. i.e. Following does *not* work
|
*Note:* Not tested in non-linux OS. But I guess it should work fine. Pull requests welcome if found any issues.
|
||||||
|
|
||||||
```bash
|
|
||||||
git config --global difftool.vimtabdiff.cmd 'vimtabdiff.py --vim "/home/foo/my files/bin/vim" $LOCAL $REMOTE'
|
|
||||||
```
|
|
||||||
2. Not tested in non-linux OS. Pull requests welcome if found any issues.
|
|
||||||
|
|
||||||
# Similar
|
# Similar
|
||||||
|
|
||||||
https://gist.github.com/Osse/4709787
|
* https://gist.github.com/Osse/4709787 is very similar, written as a `zsh` script.
|
||||||
|
* https://github.com/will133/vim-dirdiff is a Vim plugin that uses an interactive list of files instead of tabs.
|
||||||
|
* https://github.com/Soares/tabdiff.vim is a Vim plugin takes a list of files as aguments.
|
||||||
|
* [`:Git difftool -y`](https://github.com/tpope/vim-fugitive/blob/d507d00bd04794119beeb41da118774a96815b65/doc/fugitive.txt#L92) is a command from vim-fugitive which is a vim git plugin.
|
||||||
|
@ -1,33 +1,45 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import argparse
|
import argparse
|
||||||
import pathlib
|
|
||||||
import itertools
|
import itertools
|
||||||
import tempfile
|
import tempfile
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import shlex
|
||||||
|
from pathlib import Path
|
||||||
|
from typing import TypeVar
|
||||||
|
from collections.abc import Iterator, Callable
|
||||||
|
|
||||||
|
R = TypeVar('R')
|
||||||
|
|
||||||
|
|
||||||
def star(f):
|
def star(f: Callable[..., R]) -> Callable[[tuple], R]:
|
||||||
""" see https://stackoverflow.com/q/21892989 """
|
""" see https://stackoverflow.com/q/21892989 """
|
||||||
return lambda args: f(*args)
|
return lambda args: f(*args)
|
||||||
|
|
||||||
|
|
||||||
def parse_args():
|
def parse_args() -> argparse.Namespace:
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description="Show diff of files from two directories in vim tabs")
|
description="Show diff of files from two directories in vim tabs",
|
||||||
parser.add_argument("pathA")
|
epilog="See https://github.com/balki/vimtabdiff for more info")
|
||||||
parser.add_argument("pathB")
|
parser.add_argument("pathA", type=Path)
|
||||||
|
parser.add_argument("pathB", type=Path)
|
||||||
parser.add_argument("--vim", help="vim command to run", default="vim")
|
parser.add_argument("--vim", help="vim command to run", default="vim")
|
||||||
|
parser.add_argument(
|
||||||
|
"--onlydiffs", help="only open files where there is a diff", action="store_true"
|
||||||
|
)
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
def get_dir_info(dirname):
|
def get_dir_info(dirpath: Path | None) -> tuple[list[Path], list[Path]]:
|
||||||
if not dirname:
|
if not dirpath:
|
||||||
return [], []
|
return [], []
|
||||||
dirs, files = [], []
|
dirs, files = [], []
|
||||||
dirp = pathlib.Path(dirname)
|
for p in dirpath.iterdir():
|
||||||
for p in dirp.iterdir():
|
|
||||||
if p.is_dir():
|
if p.is_dir():
|
||||||
dirs.append(p)
|
dirs.append(p)
|
||||||
else:
|
else:
|
||||||
@ -35,27 +47,26 @@ def get_dir_info(dirname):
|
|||||||
return dirs, files
|
return dirs, files
|
||||||
|
|
||||||
|
|
||||||
def get_pairs(aItems, bItems):
|
def get_pairs(aPaths: list[Path],
|
||||||
aItems = [(item, 'A') for item in aItems]
|
bPaths: list[Path]) -> Iterator[tuple[Path | None, Path | None]]:
|
||||||
bItems = [(item, 'B') for item in bItems]
|
aItems = [(item, 'A') for item in aPaths]
|
||||||
|
bItems = [(item, 'B') for item in bPaths]
|
||||||
abItems = aItems + bItems
|
abItems = aItems + bItems
|
||||||
abItems.sort(key=star(lambda item, tag: (item.name, tag)))
|
abItems.sort(key=star(lambda item, tag: (item.name, tag)))
|
||||||
for _, items in itertools.groupby(abItems,
|
for _, items in itertools.groupby(abItems,
|
||||||
key=star(lambda item, _: item.name)):
|
key=star(lambda item, _: item.name)):
|
||||||
items = list(items)
|
match list(items):
|
||||||
# NOTE: python 3.10's match expression can make this better
|
case [(aItem, _), (bItem, _)]:
|
||||||
if len(items) == 2:
|
yield aItem, bItem
|
||||||
(aItem, _), (bItem, _) = items
|
case [(item, 'A'),]:
|
||||||
yield aItem, bItem
|
|
||||||
else:
|
|
||||||
(item, tag), = items
|
|
||||||
if tag == 'A':
|
|
||||||
yield item, None
|
yield item, None
|
||||||
else:
|
case [(item, 'B'),]:
|
||||||
yield None, item
|
yield None, item
|
||||||
|
|
||||||
|
|
||||||
def get_file_pairs(a, b):
|
def get_file_pairs(
|
||||||
|
a: Path | None,
|
||||||
|
b: Path | None) -> Iterator[tuple[Path | None, Path | None]]:
|
||||||
aDirs, aFiles = get_dir_info(a)
|
aDirs, aFiles = get_dir_info(a)
|
||||||
bDirs, bFiles = get_dir_info(b)
|
bDirs, bFiles = get_dir_info(b)
|
||||||
yield from get_pairs(aFiles, bFiles)
|
yield from get_pairs(aFiles, bFiles)
|
||||||
@ -63,22 +74,35 @@ def get_file_pairs(a, b):
|
|||||||
yield from get_file_pairs(aDir, bDir)
|
yield from get_file_pairs(aDir, bDir)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main() -> None:
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
vimCmdFile = tempfile.NamedTemporaryFile(mode='w', delete=False)
|
vimCmdFile = tempfile.NamedTemporaryFile(mode='w', delete=False)
|
||||||
with vimCmdFile:
|
with vimCmdFile:
|
||||||
|
cmds = f"""
|
||||||
|
let s:spr = &splitright
|
||||||
|
set splitright
|
||||||
|
"""
|
||||||
|
print(cmds, file=vimCmdFile)
|
||||||
for a, b in get_file_pairs(args.pathA, args.pathB):
|
for a, b in get_file_pairs(args.pathA, args.pathB):
|
||||||
aPath = a.resolve() if a else os.devnull
|
aPath = a.resolve() if a else os.devnull
|
||||||
bPath = b.resolve() if b else os.devnull
|
bPath = b.resolve() if b else os.devnull
|
||||||
print(
|
if (
|
||||||
f"tabedit {aPath} | diffthis | vsp {bPath} | diffthis | diffupdate",
|
args.onlydiffs
|
||||||
file=vimCmdFile)
|
and a and b
|
||||||
|
and open(aPath, mode="rb").read() == open(bPath, mode="rb").read()
|
||||||
|
):
|
||||||
|
continue
|
||||||
|
print(f"tabedit {aPath} | vsp {bPath}", file=vimCmdFile)
|
||||||
cmds = f"""
|
cmds = f"""
|
||||||
|
let &splitright = s:spr
|
||||||
|
tabdo windo :1
|
||||||
|
tabdo windo diffthis
|
||||||
|
tabdo windo diffupdate
|
||||||
tabfirst | tabclose
|
tabfirst | tabclose
|
||||||
call delete("{vimCmdFile.name}")
|
call delete("{vimCmdFile.name}")
|
||||||
"""
|
"""
|
||||||
print(cmds, file=vimCmdFile)
|
print(cmds, file=vimCmdFile)
|
||||||
subprocess.run(args.vim.split() + ["-S", vimCmdFile.name])
|
subprocess.run(shlex.split(args.vim) + ["-S", vimCmdFile.name])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user