Improve docs in cd on quit scripts

This commit is contained in:
Arun Prakash Jana 2021-09-29 19:16:58 +05:30
parent 79b3688e49
commit 2f6c180433
No known key found for this signature in database
GPG Key ID: A75979F35C080412
3 changed files with 11 additions and 6 deletions

View File

@ -6,9 +6,11 @@ n ()
return
fi
# The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)
# To cd on quit only on ^G, remove the "export" as in:
# NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd"
# The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set)
# To cd on quit only on ^G, either remove the "export" as in:
# NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd"
# (or, to a custom path: NNN_TMPFILE=/tmp/.lastd)
# or, export NNN_TMPFILE after nnn invocation
export NNN_TMPFILE="${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd"
# Unmask ^Q (, ^V etc.) (if required, see `stty -a`) to Quit nnn

View File

@ -1,7 +1,8 @@
# NOTE: set NNN_TMPFILE correctly if you use 'XDG_CONFIG_HOME'
# The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)
# To cd on quit only on ^G, export NNN_TMPFILE after the call to nnn
# The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set)
# To cd on quit only on ^G, set NNN_TMPFILE after nnn invocation
# A custom path can also be set e.g. set NNN_TMPFILE=/tmp/.lastd
set NNN_TMPFILE=~/.config/nnn/.lastd
# Unmask ^Q (, ^V etc.) (if required, see `stty -a`) to Quit nnn

View File

@ -11,9 +11,11 @@ function n --wraps nnn --description 'support nnn quit and change directory'
end
end
# The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)
# The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set)
# To cd on quit only on ^G, remove the "-x" as in:
# set NNN_TMPFILE "$XDG_CONFIG_HOME/nnn/.lastd"
# (or, to a custom path: set NNN_TMPFILE "/tmp/.lastd")
# or, export NNN_TMPFILE after nnn invocation
if test -n "$XDG_CONFIG_HOME"
set -x NNN_TMPFILE "$XDG_CONFIG_HOME/nnn/.lastd"
else