nnn/scripts/quitcd/quitcd.fish

15 lines
371 B
Fish
Raw Normal View History

# Rename this file to match the name of the function
# e.g. ~/.config/fish/functions/n.fish
# or, add the lines to the 'config.fish' file.
2017-04-19 12:52:30 +00:00
export NNN_TMPFILE="/tmp/nnn"
function n --description 'support nnn quit and change directory'
2017-06-29 23:57:25 +00:00
nnn $argv
2017-04-29 06:39:26 +00:00
2017-04-19 12:52:30 +00:00
if test -e $NNN_TMPFILE
source $NNN_TMPFILE
2017-04-19 12:52:30 +00:00
rm $NNN_TMPFILE
end
end