mirror of https://gitlab.com/basile.b/dexed.git
ctrl+x & ctrl+v works on the whole line when no selection, close #272
This commit is contained in:
parent
ba16d4cc42
commit
ad9276ef62
|
@ -1284,6 +1284,16 @@ procedure TCESynMemo.DoOnProcessCommand(var Command: TSynEditorCommand;
|
||||||
begin
|
begin
|
||||||
inherited;
|
inherited;
|
||||||
case Command of
|
case Command of
|
||||||
|
ecCut: if not SelAvail then
|
||||||
|
begin
|
||||||
|
SelectLine(false);
|
||||||
|
ExecuteCommand(ecCut, #0, nil);
|
||||||
|
end;
|
||||||
|
ecCopy: if not SelAvail then
|
||||||
|
begin
|
||||||
|
SelectLine(false);
|
||||||
|
ExecuteCommand(ecCopy, #0, nil);
|
||||||
|
end;
|
||||||
ecPaste: patchClipboardIndentation;
|
ecPaste: patchClipboardIndentation;
|
||||||
ecCompletionMenu:
|
ecCompletionMenu:
|
||||||
begin
|
begin
|
||||||
|
|
Loading…
Reference in New Issue