diff options
author | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2021-08-27 11:07:14 +0100 |
---|---|---|
committer | Dan Goodliffe <dan.goodliffe@octal.co.uk> | 2021-08-27 11:07:14 +0100 |
commit | 295917c96676739349786318166049dfefb9507a (patch) | |
tree | 9a6b1eb67814a803445e7c1bb2bdc5c25059d1f9 /bashrc | |
parent | Cleaner post build title (diff) | |
download | util-295917c96676739349786318166049dfefb9507a.tar.bz2 util-295917c96676739349786318166049dfefb9507a.tar.xz util-295917c96676739349786318166049dfefb9507a.zip |
Use EDITOR in diffWith
Diffstat (limited to 'bashrc')
-rw-r--r-- | bashrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ diffWith() { diffFile="/tmp/diffwith-$(safedir $diffCmd).patch" $diffCmd > $diffFile dos2unix -q $diffFile - ( gvim -f $diffFile ; rm $diffFile ) & + ( $EDITOR $diffFile ; rm -f $diffFile ) & } showimage() { |