mirror of https://gitlab.com/basile.b/dexed.git
completions, better behavior with `..` and when "auto-dot" is enabled (_autoDotDelay_ > 0).
This commit is contained in:
parent
7fea8c5e4d
commit
be699bd9bc
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue