Merge pull request #303 from fokinpv/forgotten-export

Add forgotten export for quitcd scripts
This commit is contained in:
Mischievous Meerkat 2019-07-10 19:14:25 +05:30 committed by GitHub
commit 74a7d2245c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View file

@ -1,6 +1,6 @@
n() n()
{ {
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
nnn "$@" nnn "$@"

View file

@ -3,13 +3,16 @@
# or, add the lines to the 'config.fish' file. # or, add the lines to the 'config.fish' file.
function n --description 'support nnn quit and change directory' function n --description 'support nnn quit and change directory'
# NOTE: set NNN_TMPFILE correctly if you use 'XDG_CONFIG_HOME' if test -n "$XDG_CONFIG_HOME"
set NNN_TMPFILE ~/.config/nnn/.lastd set -x NNN_TMPFILE "$XDG_CONFIG_HOME/nnn/.lastd"
else
set -x NNN_TMPFILE "$HOME/.config/nnn/.lastd"
end
nnn $argv nnn $argv
if test -e $NNN_TMPFILE if test -e $NNN_TMPFILE
source $NNN_TMPFILE source $NNN_TMPFILE
rm $NNN_TMPFILE rm $NNN_TMPFILE
end end
end end

View file

@ -1,6 +1,6 @@
n() n()
{ {
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
nnn "$@" nnn "$@"