Merge pull request #302 from fokinpv/fix-quitcd-example

Fix quitcd snippets for 'zsh' and 'bash'
This commit is contained in:
Mischievous Meerkat 2019-07-09 10:30:12 +05:30 committed by GitHub
commit d03ff4dc91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
n()
{
nnn "$@"
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
nnn "$@"
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm -f $NNN_TMPFILE > /dev/null

View File

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

View File

@ -1,9 +1,9 @@
n()
{
nnn "$@"
NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
nnn "$@"
if [ -f $NNN_TMPFILE ]; then
. $NNN_TMPFILE
rm $NNN_TMPFILE