My build of nnn with minor changes
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

quitcd.fish 429 B

7 yıl önce
123456789101112131415
  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. nnn $argv
  6. # NOTE: set NNN_TMPFILE correctly if you use 'XDG_CONFIG_HOME'
  7. set NNN_TMPFILE ~/.config/nnn/.lastd
  8. if test -e $NNN_TMPFILE
  9. source $NNN_TMPFILE
  10. rm $NNN_TMPFILE
  11. end
  12. end