IDEA-54362 When "Insert pair bracket" on Editor->Smart keys page is off, IDEA still inserts both parentheses on autocomplete lookup, but overtype doesn't work for functions with at least one argument

This commit is contained in:
peter.gromov
2010-12-03 15:29:05 +03:00
parent 579c1d30c1
commit 1209d0d670
4 changed files with 22 additions and 15 deletions
@@ -0,0 +1,8 @@
class MyClass {
void foo() {}
{
fo<caret>
}
}
@@ -0,0 +1,8 @@
class MyClass {
void foo() {}
{
foo(<caret>
}
}
@@ -3,6 +3,6 @@ class MyClass {
void foo() {}
{
foo();<caret>
foo(<caret>
}
}