mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-08 22:58:50 +02:00
IDE, SourceEditor: implemented identifier-completion activates on typing. Forget to test for cancelled
git-svn-id: trunk@63316 -
This commit is contained in:
parent
83ca8802cc
commit
000ea7c493
@ -4008,7 +4008,8 @@ begin
|
||||
inc(SourceCompletionCaretXY.x,length(AChar));
|
||||
|
||||
AttrName := GetCodeAttributeName(p);
|
||||
ok := (FEditor.MultiCaret.CaretsCount = 0) and
|
||||
ok := (FCodeCompletionState.State <> ccsCancelled) and
|
||||
(FEditor.MultiCaret.CaretsCount = 0) and
|
||||
(AttrName <> SYNS_XML_AttrComment) and
|
||||
(AttrName <> SYNS_XML_AttrDirective) and
|
||||
(AttrName <> SYNS_XML_AttrString);
|
||||
|
Loading…
Reference in New Issue
Block a user