mirror of https://gitlab.com/basile.b/dexed.git
fix autoCallCompletion problem and annoyance
- dont trigger the feature when using accelerators - allow in non-D sources if textCompletions are active
This commit is contained in:
parent
04138ddd63
commit
f90d246933
|
@ -7,6 +7,11 @@
|
|||
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
|
||||
This was an old workaround that has no reason to be maintained anymore.
|
||||
|
||||
## Bugs fixed
|
||||
|
||||
- Completion, option `autoCallCompletion` did not work when using `textCompletion` in non-D sources.
|
||||
- Completion, does not allow `autoCallCompletion` when key modifiers are used, e.g <key>CTRL</key>+<key>Z</key>.
|
||||
|
||||
# v3.9.18
|
||||
|
||||
## Enhancements
|
||||
|
|
|
@ -3704,11 +3704,12 @@ begin
|
|||
VK_OEM_PERIOD, VK_DECIMAL: fCanAutoDot := (fLastUp <> VK_OEM_PERIOD) and (fLastUp <> VK_DECIMAL);
|
||||
end;
|
||||
inherited;
|
||||
if fAutoCallCompletion and fIsDSource and (not fCompletion.IsActive) and
|
||||
(Key < $80) and (char(Key) in ['a'..'z', 'A'..'Z', '_']) then
|
||||
if fAutoCallCompletion and (fIsDSource or textCompletion or alwaysAdvancedFeatures) and
|
||||
(not fCompletion.IsActive) and (Key < $80) and (char(Key) in ['a'..'z', 'A'..'Z', '_']) then
|
||||
begin
|
||||
fCompletion.Execute(GetWordAtRowCol(LogicalCaretXY),
|
||||
ClientToScreen(point(CaretXPix, CaretYPix + LineHeight)));
|
||||
if Shift = [] then
|
||||
fCompletion.Execute(GetWordAtRowCol(LogicalCaretXY),
|
||||
ClientToScreen(point(CaretXPix, CaretYPix + LineHeight)));
|
||||
end;
|
||||
if (Key = VK_BACK) and fCallTipWin.Visible then
|
||||
showCallTips(true);
|
||||
|
|
Loading…
Reference in New Issue