view easyhg-extdiff.sh @ 326:6e1fdda1dff2 filelist_right_button_menu

Implement right-button menu functions for file lists; convert the toolbar-button functions (apart from Add and Remove) to modal only on working copy state rather than selection state
author Chris Cannam
date Fri, 11 Mar 2011 15:33:16 +0000
parents a1c8630a0057
children ea62eb083ed4
line wrap: on
line source
#!/bin/bash -x
p=`dirname $0`
if [ $# -lt 2 ]; then 
    echo Insufficient arguments: $@
    exit 2
fi
while [ $# -gt 2 ]; do
    shift
done
found=""
for d in kdiff3 kdiff3.exe; do
    if [ -x "$p/$d" ]; then
	found=true
	"$p/$d" "$1" "$2"
	break
    elif [ -x "$(type -path $d)" ]; then
	found=true
	"$d" "$1" "$2"
	break;
    fi
done
if [ -z "$found" ]; then
    od=/usr/bin/opendiff
    if [ -x "$od" ]; then
	found=true
	"$od" "$1" "$2" | cat
    fi
fi
[ -n "$found" ]