My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

quitcd.bash 697 B

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