nnn/plugins/diffs

36 lines
1.2 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env sh
2019-03-20 16:20:56 +00:00
2019-05-26 02:06:24 +00:00
# Description: Show diff of 2 directories or multiple files in vimdiff
2019-03-20 16:20:56 +00:00
#
2019-06-20 13:08:45 +00:00
# Note: vim may show the warning: 'Vim: Warning: Input is not from a terminal'
# press 'Enter' to ignore and proceed.
#
# Shell: POSIX compliant
2019-06-21 17:06:34 +00:00
# Authors: Arun Prakash Jana, ath3
2019-03-20 16:20:56 +00:00
2019-06-20 13:40:47 +00:00
selection=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection
2019-05-26 02:06:24 +00:00
2019-11-21 20:44:25 +00:00
if [ -s "$selection" ]; then
arr=$(tr '\0' '\n' < "$selection")
if [ "$(echo "$arr" | wc -l)" -gt 1 ]; then
f1="$(echo "$arr" | sed -n '1p')"
f2="$(echo "$arr" | sed -n '2p')"
if [ -d "$f1" ] && [ -d "$f2" ]; then
2019-11-21 20:44:25 +00:00
dir1=$(mktemp "${TMPDIR:-/tmp}"/nnn-"$(basename "$f1")".XXXXXXXX)
dir2=$(mktemp "${TMPDIR:-/tmp}"/nnn-"$(basename "$f2")".XXXXXXXX)
ls -A1 "$f1" > "$dir1"
ls -A1 "$f2" > "$dir2"
vimdiff "$dir1" "$dir2"
rm "$dir1" "$dir2"
else
# If xargs supports the -o option, use it to get rid of:
# Vim: Warning: Input is not from a terminal
2019-11-20 19:01:39 +00:00
# xargs -0 -o vimdiff < $selection
2019-11-21 20:44:25 +00:00
xargs -0 vimdiff +0 < "$selection"
fi
else
echo "needs at least 2 files or directories selected for comparison"
fi
2019-05-26 02:06:24 +00:00
fi