Add black list check when performing ls-remote completions.

This commit is contained in:
Jorge Bucaran 2016-04-29 23:59:56 +09:00
parent 0d075731fc
commit c328543234
No known key found for this signature in database
GPG key ID: E54BA3C0E646DB30

View file

@ -945,6 +945,11 @@ function __fisher_list_remote_complete
' "$fisher_cache/.index" ^ /dev/null | while read -l name info
switch "$name"
case awesome-\* fisherman\* index\* logo\* taof
continue
end
complete -xc fisher -n "__fish_seen_subcommand_from info ls-remote" -a "$name" -d "$info"
end
end