__fasd_print_completion.fish 169 B

12345
  1. # suggest paths for current args as completion
  2. function __fasd_print_completion
  3. set cmd (commandline -po)
  4. test (count $cmd) -ge 2; and fasd $argv $cmd[2..-1] -l
  5. end