diff --git a/Projects/Src/IDE.MainForm.pas b/Projects/Src/IDE.MainForm.pas index effb3057..f14edf46 100644 --- a/Projects/Src/IDE.MainForm.pas +++ b/Projects/Src/IDE.MainForm.pas @@ -5574,8 +5574,8 @@ procedure TMainForm.MemoCharAdded(Sender: TObject; Ch: AnsiChar); if DoAutoComplete then begin case Ch of - 'A'..'Z', 'a'..'z', '_', '#', '{', '[', '<': - if not FActiveMemo.AutoCompleteActive and FOptions.AutoAutoComplete then + 'A'..'Z', 'a'..'z', '_', '#', '{', '[', '<', '0'..'9': + if not FActiveMemo.AutoCompleteActive and FOptions.AutoAutoComplete and not (Ch in ['0'..'9']) then InitiateAutoComplete(Ch); else var RestartAutoComplete := (Ch in [' ', '.']) and