From 8bd6d6823a3582f37d5abf92820479eea31500e3 Mon Sep 17 00:00:00 2001 From: chee Date: Mon, 11 Mar 2019 23:38:35 +0000 Subject: [PATCH] Add indentation rules --- language-configuration.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/language-configuration.json b/language-configuration.json index c8c7e13..7a3c47f 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -1,10 +1,6 @@ { "comments": { - "lineComment": "#", - "blockComment": [ - "#`(", - ")" - ] + "lineComment": "#" }, "brackets": [ ["{", "}"], @@ -35,5 +31,9 @@ ["`", "`"], ["「", "」"], ["<", ">"] - ] + ], + "indentationRules": { + "increaseIndentPattern": "^.*\\{\\}?\\s*$", + "decreaseIndentPattern": "^\\s*\\}" + } }