From 652ba26f32b55b6f0e47f746d3c7a11d96f3eb97 Mon Sep 17 00:00:00 2001 From: Guangxiong Lin Date: Wed, 23 Nov 2022 08:37:59 +0800 Subject: Update nnn config --- .nnnrc | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) (limited to '.nnnrc') diff --git a/.nnnrc b/.nnnrc index 3250cf5..b3cf992 100755 --- a/.nnnrc +++ b/.nnnrc @@ -4,13 +4,24 @@ if [ ! -d $HOME/.config/nnn/plugins ]; then curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs | sh fi -# To support cd on quit (Ctrl-G) -# NOTE: It will add a function `n` and ONLY work when typing `n` instead -# of `nnn`. -if [ -f /usr/share/nnn/quitcd/quitcd.bash_zsh ]; then - source /usr/share/nnn/quitcd/quitcd.bash_zsh -fi - export NNN_PLUG='f:fzcd;v:imgview;j:autojump;p:preview-tui' [ -f /usr/bin/trash ] && export NNN_TRASH=1 export NNN_FIFO=/tmp/nnn.fifo + +# To support cd on quit (Ctrl-G) +# NOTE: The quitcd ONLY work when typing `n` instead of `nnn`. +n () { + if [[ "${NNNLVL:-0}" -ge 1 ]]; then + echo "nnn is already running" + return + fi + + NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd" + + \nnn "$@" + + if [ -f "$NNN_TMPFILE" ]; then + . "$NNN_TMPFILE" + rm -f "$NNN_TMPFILE" > /dev/null + fi +} -- cgit v1.2.3