# File lib/pry/command_set.rb, line 186
    def import_from(set, *matches)
      helper_module.send :include, set.helper_module
      matches.each do |match|
        cmd = set.find_command_by_match_or_listing(match)
        commands[cmd.match] = cmd
      end
      self
    end