completions, better behavior with `..` and when "auto-dot" is enabled (_autoDotDelay_ > 0).

This commit is contained in:
Basile Burg 2024-04-29 07:32:19 +02:00
parent 7fea8c5e4d
commit be699bd9bc
2 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,7 @@
- Mini-explorer, clearing the filter had for effect to scan the root folder instead of the selected one. (#129)
- Mini-explorer, on startup selected folder becomes the root, instead of the previous root. (#130)
- With dark themes warning message on exit was barely legible.
- Editor, completions, better behavior with `..` and when "auto-dot" is enabled (_autoDotDelay_ > 0).
# v3.9.26

View File

@ -3014,6 +3014,11 @@ procedure TDexedMemo.completionCodeCompletion(var value: string;
begin
if KeyChar = '' then
exit;
if (KeyChar = '.') and (SourceValue <> value) then
begin
value := SourceValue + '.';
exit;
end;
if KeyChar[1] = ' ' then
value := sourceValue + KeyChar[1]
else