aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
authorJoe Wilm <joe@jwilm.com>2016-12-26 22:52:37 -0500
committerJoe Wilm <joe@jwilm.com>2016-12-26 22:56:19 -0500
commitae470bf68bf27921109890da3d90a5b61fa6a7aa (patch)
treed9e3d3a90f29471a0fe68a0e3966d95deb3a6f39 /src/config.rs
parentd28a7344731c4cd913687a893334555feed4e270 (diff)
downloadr-alacritty-ae470bf68bf27921109890da3d90a5b61fa6a7aa.tar.gz
r-alacritty-ae470bf68bf27921109890da3d90a5b61fa6a7aa.tar.bz2
r-alacritty-ae470bf68bf27921109890da3d90a5b61fa6a7aa.zip
Implement copying selection for macOS
Still need automatic loading into selection copy buffer for linux.
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
index 9bdcc6e6..abf0bdf5 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -280,6 +280,7 @@ impl de::Deserialize for ActionWrapper {
{
Ok(ActionWrapper(match value {
"Paste" => Action::Paste,
+ "Copy" => Action::Copy,
"PasteSelection" => Action::PasteSelection,
_ => return Err(E::invalid_value("invalid value for Action")),
}))