CoralMUD-0.26/
CoralMUD-0.26/core/
CoralMUD-0.26/data/
CoralMUD-0.26/data/help/
CoralMUD-0.26/data/socials/
CoralMUD-0.26/lib/automap/
CoralMUD-0.26/lib/items/
class Player
  def cmd_vlist c,  arg
    if arg == nil
      found = [nil]
    elsif !(found = Tag.find_any_obj(arg))
      view "Namespace not found." + ENDL
      return
    end

    f = FormatGenerator.new 4, {:sep=>" ", :lf=>ENDL}

    Tag.search_namespace(found[0]) do |something|
      view something.to_s + f.resume
    end
    view f.end
    view "Total: " + f.count.to_s + ENDL
  end
end