aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ndiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ndiff')
-rwxr-xr-xplugins/ndiff4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ndiff b/plugins/ndiff
index dff24d2..f5ca0dc 100755
--- a/plugins/ndiff
+++ b/plugins/ndiff
@@ -25,9 +25,9 @@ if [ -s $selection ]; then
else
# If xargs supports the -o option, use it to get rid of:
# Vim: Warning: Input is not from a terminal
- # cat $selection | xargs -0 -o vimdiff
+ # xargs -0 -o vimdiff < $selection
- cat $selection | xargs -0 vimdiff +0
+ xargs -0 vimdiff +0 < $selection
fi
else
echo "needs at least 2 files or directories selected for comparison"