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, 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)
|
- 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.
|
- 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
|
# v3.9.26
|
||||||
|
|
||||||
|
|
|
@ -3014,6 +3014,11 @@ procedure TDexedMemo.completionCodeCompletion(var value: string;
|
||||||
begin
|
begin
|
||||||
if KeyChar = '' then
|
if KeyChar = '' then
|
||||||
exit;
|
exit;
|
||||||
|
if (KeyChar = '.') and (SourceValue <> value) then
|
||||||
|
begin
|
||||||
|
value := SourceValue + '.';
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
if KeyChar[1] = ' ' then
|
if KeyChar[1] = ' ' then
|
||||||
value := sourceValue + KeyChar[1]
|
value := sourceValue + KeyChar[1]
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue