init

Junkui Zhang created

Change summary

crates/gpui/src/platform/keystroke.rs | 10 ++++++++++
1 file changed, 10 insertions(+)

Detailed changes

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 {