aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorChristian Duerr <chrisduerr@users.noreply.github.com>2018-06-16 10:11:47 +0000
committerGitHub <noreply@github.com>2018-06-16 10:11:47 +0000
commit0f700a01bd73623cdfc0afc4a54f9e82f46d8f49 (patch)
tree42949b3dbc2944c6823d9f013d4e07bda8381008 /src/config.rs
parent6cbae83f174fa6d114ea66b1f8dd6185950ca835 (diff)
downloadalacritty-0f700a01bd73623cdfc0afc4a54f9e82f46d8f49.tar.gz
alacritty-0f700a01bd73623cdfc0afc4a54f9e82f46d8f49.zip
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.
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs6
1 files changed, 6 insertions, 0 deletions
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,
}
}
}