mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
16 lines
564 B
Tcsh
16 lines
564 B
Tcsh
# NOTE: set NNN_TMPFILE correctly if you use 'XDG_CONFIG_HOME'
|
|
|
|
# The behaviour is set to cd on quit (nnn checks if NNN_TMPFILE is set)
|
|
# If NNN_TMPFILE is set to a custom path, it must be exported for nnn to see.
|
|
# To cd on quit only on ^G, set NNN_TMPFILE after the nnn invocation, and make
|
|
# sure not to use a custom path.
|
|
set NNN_TMPFILE=~/.config/nnn/.lastd
|
|
|
|
# Unmask ^Q (, ^V etc.) (if required, see `stty -a`) to Quit nnn
|
|
# stty start undef
|
|
# stty stop undef
|
|
# stty lwrap undef
|
|
# stty lnext undef
|
|
|
|
alias n 'nnn; source "$NNN_TMPFILE"; rm -f "$NNN_TMPFILE"'
|