From 0f700a01bd73623cdfc0afc4a54f9e82f46d8f49 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sat, 16 Jun 2018 10:11:47 +0000 Subject: Add Copy/Cut/Paste keys This just adds support for the Copy/Cut/Paste keys and sets up Copy/Paste as alternative defaults for Ctrl+Shift+C/V. --- src/config.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/config.rs b/src/config.rs index a8034139..88a14b22 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1889,6 +1889,9 @@ enum Key { WebStop, Yen, Caret, + Copy, + Paste, + Cut, } impl Key { @@ -2047,6 +2050,9 @@ impl Key { Key::WebStop => WebStop, Key::Yen => Yen, Key::Caret => Caret, + Key::Copy => Copy, + Key::Paste => Paste, + Key::Cut => Cut, } } } -- cgit v1.2.3-54-g00ecf