class Pry::Command::Cat

def load_path_completions

def load_path_completions
  $LOAD_PATH.flat_map do |path|
    Dir[path + '/**/*'].map do |f|
      next if File.directory?(f)
      f.sub!(path + '/', '')
    end
  end
end