autocompletion with variables
Answered
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 sign in to leave a comment.
Please see https://youtrack.jetbrains.com/issue/IDEABKL-6690.
Ctrl+Shift+Space inside the parenthesis may help.