mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-27091 When finishing method lookup item with '(', put caret after this '(' even if method has no parameters
IDEA-51789 When "Insert pair bracket" on Editor->Smart keys page is off, IDEA still inserts both parentheses on autocomplete lookup, but overtype doesn't work
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
|
||||
void foo() {}
|
||||
|
||||
{
|
||||
fo<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
|
||||
void foo() {}
|
||||
|
||||
{
|
||||
foo(<caret>
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
class MyClass {
|
||||
|
||||
void foo() {}
|
||||
|
||||
{
|
||||
foo();<caret>
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,6 +3,6 @@ class MyClass {
|
||||
void foo() {}
|
||||
|
||||
{
|
||||
foo();<caret>
|
||||
foo(<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user