2019-01-01 23:57:38 +00:00
|
|
|
# Rename this file to match the name of the function
|
|
|
|
# e.g. ~/.config/fish/functions/n.fish
|
2019-01-02 10:46:02 +00:00
|
|
|
# or, add the lines to the 'config.fish' file.
|
2019-01-01 23:57:38 +00:00
|
|
|
|
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
|
2018-11-26 12:21:59 +00:00
|
|
|
source $NNN_TMPFILE
|
2017-04-19 12:52:30 +00:00
|
|
|
rm $NNN_TMPFILE
|
|
|
|
end
|
|
|
|
end
|