Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ace_utils.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ee71ae0e61a0cc8b1243ba3ab2af0ac4138d470b (plain)
1
2
3
4
5
6
/* global ace */

export default function getModeByFileExtension(path) {
  const modelist = ace.require('ace/ext/modelist');
  return modelist.getModeForPath(path).mode;
}