From ae470bf68bf27921109890da3d90a5b61fa6a7aa Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 26 Dec 2016 22:52:37 -0500 Subject: Implement copying selection for macOS Still need automatic loading into selection copy buffer for linux. --- src/config.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src/config.rs') 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")), })) -- cgit