From c854eb1403a4a4ef9788a57fe042bec0a397c02d Mon Sep 17 00:00:00 2001 From: Andy Hall Date: Thu, 30 May 2024 07:29:15 -0400 Subject: [PATCH] Remove `/` and `\` from wordPattern (#186) --- language-configuration.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language-configuration.json b/language-configuration.json index 19be9fc..f290b40 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -41,7 +41,7 @@ "end": "^\\s*# endregion" } }, - "wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)", + "wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\?\\s]+)", "indentationRules": { "increaseIndentPattern": "{{?(def|def-env|else|extern|for|if|let|let-env|with-env)\\b.*}}?", "decreaseIndentPattern": "{{?/(def|def-env|for|if)\\b}}?"