text blocks: add text block escaping (only escape """ and \) when pasting (IDEA-217353)

GitOrigin-RevId: 03db759d2b770edc191aa0614251bdbaaa1742ed
This commit is contained in:
Bas Leijdekkers
2019-08-01 01:02:50 +03:00
committed by intellij-monorepo-bot
parent 1094935f12
commit 507c853824
7 changed files with 75 additions and 23 deletions
@@ -1,5 +1,5 @@
class C {
String empty = """
\"\"\"
target\"\"\"<caret>""";
\"""
target\""\"<caret>""";
}