mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
EnterInStringLiteralHandler should use language-specific option for operation sign (fixes IDEA-114783), [CR-IC-5159]
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public class Shakespeare {
|
||||
void quote() {
|
||||
String theQuote = "A fool thinks himself to be wise, <caret>but a wise man knows himself to be a fool.";
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
public class Shakespeare {
|
||||
void quote() {
|
||||
String theQuote = "A fool thinks himself to be wise, <caret>but a wise man knows himself to be a fool.";
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
public class Shakespeare {
|
||||
void quote() {
|
||||
String theQuote = "A fool thinks himself to be wise, "
|
||||
+ "<caret>but a wise man knows himself to be a fool.";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
public class Shakespeare {
|
||||
void quote() {
|
||||
String theQuote = "A fool thinks himself to be wise, " +
|
||||
"<caret>but a wise man knows himself to be a fool.";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user