From 4b4af504a9a78d1a063de742aa40e9d611bbbe54 Mon Sep 17 00:00:00 2001 From: Aiday Marlen Kyzy Date: Wed, 20 Mar 2024 18:38:42 +0100 Subject: [PATCH] adding this potential regex pattern --- .../editor/contrib/indentation/test/browser/indentation.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts b/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts index 84a06ae89be..89e080181ed 100644 --- a/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts +++ b/src/vs/editor/contrib/indentation/test/browser/indentation.test.ts @@ -675,6 +675,7 @@ suite('`Full` Auto Indent On Type - TypeScript/JavaScript', () => { test.skip('issue #43244: incorrect indentation', () => { // https://github.com/microsoft/vscode/issues/43244 + // potential regex to fix: "^.*[if|while|for]\s*\(.*\)\s*", const model = createTextModel([ 'function f() {',