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.

пре 7 година
пре 7 година
пре 7 година
пре 7 година
пре 7 година
1234567891011121314
  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. export NNN_TMPFILE="/tmp/nnn"
  5. function n --description 'support nnn quit and change directory'
  6. nnn $argv
  7. if test -e $NNN_TMPFILE
  8. source $NNN_TMPFILE
  9. rm $NNN_TMPFILE
  10. end
  11. end