mirror of https://gitlab.com/basile.b/dexed.git
doesn't set CTRL+C as the default copy shortcut of the terminal
This commit is contained in:
parent
c65592d659
commit
1335208d25
|
@ -111,8 +111,8 @@ const
|
||||||
|
|
||||||
constructor TTerminalShortcuts.create;
|
constructor TTerminalShortcuts.create;
|
||||||
begin
|
begin
|
||||||
fCopy := KeyToShortCut(word(char('C')), [ssCtrl]);
|
fCopy := KeyToShortCut(word(char('C')), [ssCtrl, ssShift]);
|
||||||
fPaste:= KeyToShortCut(word(char('V')), [ssCtrl]);
|
fPaste:= KeyToShortCut(word(char('V')), [ssCtrl, ssShift]);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TTerminalShortcuts.assign(source: TPersistent);
|
procedure TTerminalShortcuts.assign(source: TPersistent);
|
||||||
|
|
Loading…
Reference in New Issue