mirror of https://gitlab.com/basile.b/dexed.git
fix #80 - warning icons for d-scanner not always properly resets
This commit is contained in:
parent
9b1391e781
commit
7a4f0af84b
|
@ -4,6 +4,9 @@
|
|||
|
||||
- releases, linux, gtk2: random crashes when save and open dialogs are displayed. (#79)
|
||||
|
||||
## Bugs fixed
|
||||
|
||||
- editor, gutter: cases where warnings icons were not always updated. (#80)
|
||||
## Other
|
||||
|
||||
- D2 highlighter: remove the keywords `body` (deprecated), `typedef` (deprecated), `macro` (unused).
|
||||
|
|
|
@ -1584,6 +1584,7 @@ begin
|
|||
SelectLine(true);
|
||||
ExecuteCommand(ecCut, #0, nil);
|
||||
Clipboard.AsText := TrimLeft(Clipboard.AsText);
|
||||
fCanDscan:= true;
|
||||
end;
|
||||
ecCopy: if not SelAvail then
|
||||
begin
|
||||
|
@ -1591,7 +1592,11 @@ begin
|
|||
ExecuteCommand(ecCopy, #0, nil);
|
||||
SelEnd:=SelStart;
|
||||
end;
|
||||
ecPaste: patchClipboardIndentation;
|
||||
ecPaste:
|
||||
begin
|
||||
patchClipboardIndentation;
|
||||
fCanDscan:= true;
|
||||
end;
|
||||
ecCompletionMenu:
|
||||
begin
|
||||
fCanAutoDot:=false;
|
||||
|
@ -1625,6 +1630,10 @@ begin
|
|||
lexWholeText([TLexOption.lxoNoWhites, TLexOption.lxoNoComments]);
|
||||
curlyBraceCloseAndIndent;
|
||||
end;
|
||||
ecUndo:
|
||||
fCanDscan:= true;
|
||||
ecRedo:
|
||||
fCanDscan:= true;
|
||||
ecCommentSelection:
|
||||
commentSelection;
|
||||
ecSwapVersionAllNone:
|
||||
|
|
Loading…
Reference in New Issue