module Pry::Helpers::CommandHelpers

def file_map

def file_map
  {
    [".c", ".h"] => :c,
    [".cpp", ".hpp", ".cc", ".h", "cxx"] => :cpp,
    [".rb", "Rakefile", ".irbrc", ".gemspec", ".pryrc"] => :ruby,
    ".py" => :python,
    ".diff" => :diff,
    ".css" => :css,
    ".html" => :html,
    [".yaml", ".yml"] => :yaml,
    ".xml" => :xml,
    ".php" => :php,
    ".js" => :javascript,
    ".java" => :java,
    ".rhtml" => :rhtml,
    ".json" => :json
  }
end