fish-shell/share/functions/__fish_print_pacman_repos.fish
Aaron Gyes 36691df6fe Stringify many completions and functions, with --invert stringification.
I believe apm must have been buggy - example output that I found online
showed `tr` was mangling paths with spaces in it. Should be fixed.

Also, use dscl on OS X in __fish_complete_users.fish like
__fish_print_users.fish already does.
2016-04-08 10:49:29 +08:00

3 lines
214 B
Fish

function __fish_print_pacman_repos --description "Print the repositories configured for arch's pacman package manager"
string replace -r -a "\[(.+)\]" "\1" < /etc/pacman.conf | string match -r -v "^#|options"
end