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.
 
 
 
 
 
 

21 lines
628 B

  1. # Rename this file to match the name of the function
  2. # e.g. ~/.config/fish/functions/n.fish
  3. # or, add the lines to the 'config.fish' file.
  4. function n --description 'support nnn quit and change directory'
  5. # The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)
  6. # To cd on quit only on ^G, export NNN_TMPFILE after the call to nnn
  7. if test -n "$XDG_CONFIG_HOME"
  8. set -x NNN_TMPFILE "$XDG_CONFIG_HOME/nnn/.lastd"
  9. else
  10. set -x NNN_TMPFILE "$HOME/.config/nnn/.lastd"
  11. end
  12. nnn $argv
  13. if test -e $NNN_TMPFILE
  14. source $NNN_TMPFILE
  15. rm $NNN_TMPFILE
  16. end
  17. end