aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2018-10-27 16:10:48 +0200
committerTeddy Wing2018-10-27 16:10:48 +0200
commitfb68afe6481ab419d1beb80442de37c395dc5784 (patch)
tree9504a8932737944f4550746f74f4cd3a24577efc /src
parent1eb8afef6c95246ebe1e9ddcce6a3e4274c043fc (diff)
downloaddome-key-map-fb68afe6481ab419d1beb80442de37c395dc5784.tar.bz2
Action: Remove `Action::Command` variant
I wasn't using it. At first I added it because it made sense, but ultimately I ended up using `Action::String` for commands instead because that was easier.
Diffstat (limited to 'src')
-rw-r--r--src/parser.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 18714c8..6f7f98e 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -117,7 +117,6 @@ impl KeyboardKeyWithModifiers {
pub enum Action {
String(String),
Map(Vec<KeyboardKeyWithModifiers>),
- Command(Vec<String>),
}
#[repr(C)]