mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 08:32:36 +00:00
Merge pull request #303 from fokinpv/forgotten-export
Add forgotten export for quitcd scripts
This commit is contained in:
commit
74a7d2245c
|
@ -1,6 +1,6 @@
|
|||
n()
|
||||
{
|
||||
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
|
||||
export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
|
||||
|
||||
nnn "$@"
|
||||
|
||||
|
|
|
@ -3,8 +3,11 @@
|
|||
# or, add the lines to the 'config.fish' file.
|
||||
|
||||
function n --description 'support nnn quit and change directory'
|
||||
# NOTE: set NNN_TMPFILE correctly if you use 'XDG_CONFIG_HOME'
|
||||
set NNN_TMPFILE ~/.config/nnn/.lastd
|
||||
if test -n "$XDG_CONFIG_HOME"
|
||||
set -x NNN_TMPFILE "$XDG_CONFIG_HOME/nnn/.lastd"
|
||||
else
|
||||
set -x NNN_TMPFILE "$HOME/.config/nnn/.lastd"
|
||||
end
|
||||
|
||||
nnn $argv
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
n()
|
||||
{
|
||||
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
|
||||
export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
|
||||
|
||||
nnn "$@"
|
||||
|
||||
|
|
Loading…
Reference in a new issue