no more word completion autopopup, even in plain text (IDEA-64781)

This commit is contained in:
peter
2011-04-14 20:35:48 +02:00
parent f85c93ff06
commit ff473e1ce0
5 changed files with 5 additions and 37 deletions
@@ -32,11 +32,6 @@ public class JavaWordCompletionFilter implements WordCompletionElementFilter {
JavaDocTokenType.DOC_COMMENT_DATA, JavaTokenType.STRING_LITERAL);
public boolean isWordCompletionEnabledIn(final IElementType element) {
final CompletionProcess process = CompletionService.getCompletionService().getCurrentCompletion();
if (process != null && process.isAutopopupCompletion()) {
return false;
}
return ENABLED_TOKENS.contains(element);
}
}