From d60a634f34ac251db3cb8a15e1f23faa6eb8283e Mon Sep 17 00:00:00 2001 From: Karolina Bogacka Date: Tue, 20 Aug 2019 13:13:43 +0200 Subject: [PATCH] deleting pipe formatting in multiline strings outside of metals/metals --- src/extension.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/extension.ts b/src/extension.ts index d49714782..fa79070c0 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -600,11 +600,6 @@ function enableScaladocIndentation() { afterText: /^\s*\*\/$/, action: { indentAction: IndentAction.IndentOutdent, appendText: " * " } }, - { - // e.g. | - beforeText: /^(\s*\|.*|.*"""\|)$/, - action: { indentAction: IndentAction.Indent, appendText: "|" } - }, { // e.g. /** ...| beforeText: /^\s*\/\*\*(?!\/)([^\*]|\*(?!\/))*$/,