crates/gpui/src/platform/keystroke.rs 🔗
@@ -5,6 +5,16 @@ use std::{
fmt::{Display, Write},
};
+/// TODO:
+pub struct KeybindKeystroke {
+ /// TODO:
+ pub inner: Keystroke,
+ /// TODO:
+ pub modifiers: Modifiers,
+ /// TODO:
+ pub key: String,
+}
+
/// A keystroke and associated metadata generated by the platform
#[derive(Clone, Debug, Eq, PartialEq, Default, Deserialize, Hash)]
pub struct Keystroke {