Autompletion enhancement: remove unwanted symbols

Fixes #3861
Closes #3917
This commit is contained in:
annbumagina 2017-11-25 21:33:36 +03:00 committed by Don HO
parent 92d962782e
commit f07ebbf806

View File

@ -135,7 +135,7 @@ void AutoCompletion::getWordArray(vector<generic_string> & wordArray, TCHAR *beg
generic_string expr(TEXT("\\<")); generic_string expr(TEXT("\\<"));
expr += beginChars; expr += beginChars;
expr += TEXT("[^ \\t\\n\\r.,;:\"()=<>'+!\\[\\]]+"); expr += TEXT("[^ \\t\\n\\r.,;:\"(){}=<>'+!\\[\\]]+");
int docLength = int(_pEditView->execute(SCI_GETLENGTH)); int docLength = int(_pEditView->execute(SCI_GETLENGTH));