Przeglądaj źródła

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

Martijn Laan 1 rok temu
rodzic
commit
36a88d3ecd
1 zmienionych plików z 1 dodań i 1 usunięć
  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) = '.');
             var ClassOrRecordMember := (PositionBeforeWordStartPos >= LinePos) and (FActiveMemo.GetByteAtPosition(PositionBeforeWordStartPos) = '.');
             if not ClassOrRecordMember then begin
             if not ClassOrRecordMember then begin
               WordList := FMemosStyler.ScriptWordList;
               WordList := FMemosStyler.ScriptWordList;
-              FActiveMemo.SetAutoCompleteFillupChars('(')
+              FActiveMemo.SetAutoCompleteFillupChars('');
             end;
             end;
           end;
           end;