Browse Source

Until there's full document autocompletion we shouldnt set extra fillup chars on [Code] autocompletion because the list is incomplete.

Martijn Laan 1 year ago
parent
commit
36a88d3ecd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Projects/Src/Compil32/CompForm.pas

+ 1 - 1
Projects/Src/Compil32/CompForm.pas

@@ -4968,7 +4968,7 @@ begin
             var ClassOrRecordMember := (PositionBeforeWordStartPos >= LinePos) and (FActiveMemo.GetByteAtPosition(PositionBeforeWordStartPos) = '.');
             if not ClassOrRecordMember then begin
               WordList := FMemosStyler.ScriptWordList;
-              FActiveMemo.SetAutoCompleteFillupChars('(')
+              FActiveMemo.SetAutoCompleteFillupChars('');
             end;
           end;