nnn/scripts/quitcd/quitcd.fish
Joni Salmi 2623f688f2
Replace single dot with source for fish shell
Single dot has been deprecated and can cause issues with users on newer version: https://github.com/fish-shell/fish-shell/issues/310
2018-11-26 14:21:59 +02:00

11 lines
231 B
Fish

export NNN_TMPFILE="/tmp/nnn"
function n --description 'support nnn quit and change directory'
nnn $argv
if test -e $NNN_TMPFILE
source $NNN_TMPFILE
rm $NNN_TMPFILE
end
end