Fix duplicated words in Auto-Completion pop-up window

Fix #9711, close #9867
This commit is contained in:
rddim 2021-05-15 13:47:18 +03:00 committed by Don HO
parent e623e76d0b
commit da352ef5ad
1 changed files with 1 additions and 1 deletions

View File

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