# File lib/pry/default_commands/help.rb, line 19
        def visible_commands
          visible = {}
          commands.each do |key, command|
            visible[key] = command if command.description && !command.description.empty?
          end
          visible
        end