Merge pull request #56 from finalfantasia/master

[clojure] Improve the regular expressions for various symbols
This commit is contained in:
Alexandru Dima 2019-01-10 12:40:07 +01:00 committed by GitHub
commit f9595842a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 129 additions and 38 deletions

View file

@ -8,7 +8,7 @@ import { registerLanguage } from '../_.contribution';
registerLanguage({
id: 'clojure',
extensions: ['.clj', '.clojure'],
extensions: ['.clj', '.cljs', '.cljc', '.edn'],
aliases: ['clojure', 'Clojure'],
loader: () => import('./clojure')
});