autocompletion with variables
已回答
i dont know if this is already working, however i cant find it if its working. following example:
private boolean isValid(String s) {
isNo -> autocompletion should show isNotEmpty(s) but it only shows isNotEmpty
}
private boolean isNotEmpty(String s) {
return true;
}
请先登录再写评论。
Please see https://youtrack.jetbrains.com/issue/IDEABKL-6690.
Ctrl+Shift+Space inside the parenthesis may help.