escape call to nnn in quitcd.csh

This commit is contained in:
Anomalocaridid 2022-07-17 10:53:16 -04:00
parent 39f7485fbd
commit 2a6f106553
1 changed files with 3 additions and 1 deletions

View File

@ -12,4 +12,6 @@ set NNN_TMPFILE=~/.config/nnn/.lastd
# stty lwrap undef
# stty lnext undef
alias n 'nnn; source "$NNN_TMPFILE"; rm -f "$NNN_TMPFILE"'
# The backslash allows one to alias nnn to n if desired without making an
# infinitely recursive alias
alias n '\nnn; source "$NNN_TMPFILE"; rm -f "$NNN_TMPFILE"'