nnn/scripts/quitcd/quitcd.fish
QasimK 6b7af57947 Document how to install fish quitcd function
It was not clear that the name of the file should match
the name of the function.
2019-01-01 23:57:38 +00:00

14 lines
324 B
Fish

# Rename this file to match the name of the function
# e.g. ~/.config/fish/functions/n.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