simple git repository browser with vim
From: Eric Wong <hidden>
Date: 2016-06-15 22:42:13
Here's a really quick and easy way to browse git repositories for vim
users. Hopefully somebody else finds this useful, I know I do.
The idea is just to open a temporary file with git sha1sums (say git-log
output) in vim, move your cursor over any one of the object sha1sums,
and then hit ,G (or any shortcut of your choice) in normal mode to
show what one of those was.
It relies on a simple shell script I wrote called 'git-show' that picks
a reasonable way to display each of the blob, tree, or commit object
types. I'm fairly sure somebody else has written something like
git-show before, I just couldn't find it. I'd imagine it's pretty
useful standalone without vim, too.
If you :set foldmethod=marker in vim, you can pass the -f
flag to git-show and it'll enclose the output with the the default
vim fold markers: {{{ }}}
This is the line I've added to my .vimrc:
map ,G yaw:.!git-show -f <c-r>" <CR>
And here is git-show in all it's glory:
---
#!/bin/sh
while : ; do
case "$1" in
-f|--fold-marker)
fold_marker=1
;;
*)
if [ -z "$sha1sum" ]; then
sha1sum="$1"
fi
break
;;
esac
shift
done
type=`git-cat-file -t $sha1sum`
if [ -n "$fold_marker" ]; then
echo "$type($1) {{{"
fi
case "$type" in
tree)
git-ls-tree -r $1
;;
blob)
git-cat-file blob $1
;;
commit)
git-cat-file commit $1
echo ''
git-whatchanged --max-count=1 -C -p -r $1
;;
esac
if [ -n "$fold_marker" ]; then
echo '}}}'
fi
--
Eric Wong