My build of nnn with minor changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
636 B

  1. n()
  2. {
  3. # Block nesting of nnn in subshells
  4. if [ $(expr $NNNLVL + 0) -ge 1 ]; then
  5. echo "nnn is already running"
  6. return
  7. fi
  8. # Unmask ^Q (, ^V etc.) (if required, see `stty -a`) to Quit nnn
  9. # stty start undef
  10. # stty stop undef
  11. # stty lwrap undef
  12. # The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)
  13. # To cd on quit only on ^G, export NNN_TMPFILE after the call to nnn
  14. export NNN_TMPFILE=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.lastd
  15. nnn "$@"
  16. if [ -f $NNN_TMPFILE ]; then
  17. . $NNN_TMPFILE
  18. rm -f $NNN_TMPFILE > /dev/null
  19. fi
  20. }