diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-20 19:10:47 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2019-06-20 19:17:00 +0530 |
commit | 2d1d17616058126ef4c7e156f5925006839a822f (patch) | |
tree | 49b3ffe60d60d25280672d660cb94225532ebfdb /plugins/ndiff | |
parent | 98a8eb1805f6f5df38dedb68ece57dc7b19bf52b (diff) | |
download | nnn-2d1d17616058126ef4c7e156f5925006839a822f.tar.gz |
Fix #288
Diffstat (limited to 'plugins/ndiff')
-rwxr-xr-x | plugins/ndiff | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ndiff b/plugins/ndiff index 00dc059..9590cf4 100755 --- a/plugins/ndiff +++ b/plugins/ndiff @@ -8,7 +8,7 @@ # Shell: POSIX compliant # Author: Arun Prakash Jana -selection=~/.config/nnn/.selection +selection=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection if [ -s $selection ]; then arr=$(tr '\0' '\n' < "$selection") |