From b290a6eb462e6454b93515d73a1242f7a58bb4ef Mon Sep 17 00:00:00 2001 From: Yue Yang Date: Mon, 21 Oct 2019 16:30:37 +0800 Subject: [PATCH] Fixes unexpected behavior of (** --- editor-extensions/vscode/ocaml.configuration.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor-extensions/vscode/ocaml.configuration.json b/editor-extensions/vscode/ocaml.configuration.json index 1cae3a14..854bbad9 100644 --- a/editor-extensions/vscode/ocaml.configuration.json +++ b/editor-extensions/vscode/ocaml.configuration.json @@ -4,7 +4,7 @@ { "open": "[", "close": "]" }, { "open": "(", "close": ")" }, { "open": "\"", "close": "\"", "notIn": [ "string" ] }, - { "open": "(**", "close": " *)", "notIn": [ "string" ] } + { "open": "(**", "close": " *", "notIn": [ "string" ] } ], "brackets": [ [ "{", "}" ],