diff options
author | Joe Wilm <joe@jwilm.com> | 2016-12-26 22:52:37 -0500 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-12-26 22:56:19 -0500 |
commit | ae470bf68bf27921109890da3d90a5b61fa6a7aa (patch) | |
tree | d9e3d3a90f29471a0fe68a0e3966d95deb3a6f39 /src/config.rs | |
parent | d28a7344731c4cd913687a893334555feed4e270 (diff) | |
download | r-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.rs | 1 |
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")), })) |