From 228aa4740bf9b1e7cf737f356cf92e549bfcdaf6 Mon Sep 17 00:00:00 2001 From: Connor O'Shea Date: Sun, 15 Sep 2019 20:20:11 -0400 Subject: [PATCH] Add support for properties (INI) --- resources/js/services/code.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/js/services/code.js b/resources/js/services/code.js index 1e0e48289..7dddc92fd 100644 --- a/resources/js/services/code.js +++ b/resources/js/services/code.js @@ -16,6 +16,7 @@ import 'codemirror/mode/mllike/mllike'; import 'codemirror/mode/nginx/nginx'; import 'codemirror/mode/php/php'; import 'codemirror/mode/powershell/powershell'; +import 'codemirror/mode/properties/properties'; import 'codemirror/mode/python/python'; import 'codemirror/mode/ruby/ruby'; import 'codemirror/mode/rust/rust'; @@ -42,6 +43,7 @@ const modeMap = { haskell: 'haskell', hs: 'haskell', html: 'htmlmixed', + ini: 'text/x-ini', javascript: 'javascript', json: {name: 'javascript', json: true}, js: 'javascript', @@ -54,6 +56,7 @@ const modeMap = { ml: 'mllike', nginx: 'nginx', powershell: 'powershell', + properties: 'text/x-properties', ocaml: 'mllike', php: 'php', py: 'python',