# File lib/pry/command.rb, line 605
    def complete(search)
      slop.map do |opt|
        [opt.long && "--#{opt.long} " || opt.short && "-#{opt.short}"]
      end.flatten(1).compact + super
    end