Merge pull request #388 from genebean/svndiffs

Add two functions for doing diffs with svn
This commit is contained in:
Gene Liverman 2024-04-23 11:34:15 -04:00 committed by GitHub
commit a8c49a972f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -273,6 +273,14 @@ in {
NVIM_APPNAME=$(basename $config) nvim $* NVIM_APPNAME=$(basename $config) nvim $*
} }
svndiffless() {
svn diff "$@" |diff-so-fancy |less -R
}
svndiffless-nows() {
svn diff -x -w "$@" |diff-so-fancy |less -R
}
# unset oh-my-zsh's gk so that gk can refer to the gitkraken-cli # unset oh-my-zsh's gk so that gk can refer to the gitkraken-cli
unalias gk unalias gk
''; '';