aboutsummaryrefslogtreecommitdiff
path: root/src/input.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/input.rs')
-rw-r--r--src/input.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input.rs b/src/input.rs
index 491a91cc..92126387 100644
--- a/src/input.rs
+++ b/src/input.rs
@@ -137,6 +137,9 @@ pub enum Action {
/// Paste contents of selection buffer
PasteSelection,
+
+ /// Quits Alacritty.
+ Quit,
}
impl Action {
@@ -165,6 +168,10 @@ impl Action {
warn!("Error loading data from clipboard. {}", Red(err));
});
},
+ Action::Quit => {
+ // FIXME should do a more graceful shutdown
+ ::std::process::exit(0);
+ },
}
}