diff options
| author | Teddy Wing | 2018-10-27 16:10:48 +0200 |
|---|---|---|
| committer | Teddy Wing | 2018-10-27 16:10:48 +0200 |
| commit | fb68afe6481ab419d1beb80442de37c395dc5784 (patch) | |
| tree | 9504a8932737944f4550746f74f4cd3a24577efc /src/parser.rs | |
| parent | 1eb8afef6c95246ebe1e9ddcce6a3e4274c043fc (diff) | |
| download | dome-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/parser.rs')
| -rw-r--r-- | src/parser.rs | 1 |
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)] |
