Java: fix text block selection behaviour in text blocks with escaped newlines (IDEA-282073)

GitOrigin-RevId: 430c4c67698acdb46d1756c5ed3bc12d6b01a5bd
This commit is contained in:
Bas Leijdekkers
2023-10-30 09:10:54 +01:00
committed by intellij-monorepo-bot
parent 09d35674b1
commit 661fc8569c
6 changed files with 36 additions and 30 deletions

View File

@@ -1,4 +1,4 @@
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package com.intellij.codeInsight;
import com.intellij.BasicDefaultLightProjectDescriptor;
@@ -196,6 +196,8 @@ public abstract class AbstractBasicJavaSelectWordTest extends SelectWordTestBase
public void testTextBlockEmptyLines() { doTest("java"); }
public void testTextBlockEscapedLineEndings() { doTest("java"); }
public void testLineComments() { doTest("java"); }
public void testLineCommentsAtStart() { doTest("java"); }