Checkpoint

Antonio Scandurra created

Change summary

crates/gpui3/src/gpui3.rs                 |  4 ++--
crates/gpui3/src/keymap/binding.rs        |  0 
crates/gpui3/src/keymap/keymap.rs         |  0 
crates/gpui3/src/keymap/keymap_context.rs |  0 
crates/gpui3/src/keymap/matcher.rs        | 16 ++++------------
crates/gpui3/src/keymap/mod.rs            |  9 +++++++++
crates/gpui3/src/window.rs                |  6 +++---
7 files changed, 18 insertions(+), 17 deletions(-)

Detailed changes

crates/gpui3/src/gpui3.rs 🔗

@@ -11,7 +11,7 @@ mod geometry;
 mod hover;
 mod image_cache;
 mod interactive;
-mod keymap_matcher;
+mod keymap;
 mod platform;
 mod scene;
 mod style;
@@ -39,7 +39,7 @@ pub use gpui3_macros::*;
 pub use hover::*;
 pub use image_cache::*;
 pub use interactive::*;
-pub use keymap_matcher::*;
+pub use keymap::*;
 pub use platform::*;
 pub use refineable::*;
 pub use scene::*;

crates/gpui3/src/keymap_matcher.rs → crates/gpui3/src/keymap/matcher.rs 🔗

@@ -1,12 +1,4 @@
-mod binding;
-mod keymap;
-mod keymap_context;
-
-pub use binding::*;
-pub use keymap::*;
-pub use keymap_context::*;
-
-use crate::Keystroke;
+use crate::{Binding, Keymap, KeymapContext, KeymapVersion, Keystroke};
 use smallvec::SmallVec;
 use std::any::{Any, TypeId};
 
@@ -16,13 +8,13 @@ pub trait Action: Any + Send + Sync {
     fn as_any(&self) -> &dyn Any;
 }
 
-pub struct KeymapMatcher {
+pub struct KeyMatcher {
     pending_keystrokes: Vec<Keystroke>,
     keymap: Keymap,
     keymap_version: KeymapVersion,
 }
 
-impl KeymapMatcher {
+impl KeyMatcher {
     pub fn new(keymap: Keymap) -> Self {
         Self {
             pending_keystrokes: Vec::new(),
@@ -106,7 +98,7 @@ impl KeymapMatcher {
     }
 }
 
-impl Default for KeymapMatcher {
+impl Default for KeyMatcher {
     fn default() -> Self {
         Self::new(Keymap::default())
     }

crates/gpui3/src/keymap/mod.rs 🔗

@@ -0,0 +1,9 @@
+mod binding;
+mod keymap;
+mod keymap_context;
+mod matcher;
+
+pub use binding::*;
+pub use keymap::*;
+pub use keymap_context::*;
+pub use matcher::*;

crates/gpui3/src/window.rs 🔗

@@ -2,7 +2,7 @@ use crate::{
     px, size, Action, AnyBox, AnyView, AppContext, AsyncWindowContext, AvailableSpace,
     BorrowAppContext, Bounds, BoxShadow, Context, Corners, DevicePixels, DisplayId, Edges, Effect,
     Element, EntityId, EventEmitter, FocusEvent, FontId, GlobalElementId, GlyphId, Handle, Hsla,
-    ImageData, InputEvent, IsZero, KeyListener, KeyMatch, KeymapMatcher, Keystroke, LayoutId,
+    ImageData, InputEvent, IsZero, KeyListener, KeyMatch, KeyMatcher, Keystroke, LayoutId,
     MainThread, MainThreadOnly, MonochromeSprite, MouseMoveEvent, Path, Pixels, Platform,
     PlatformAtlas, PlatformWindow, Point, PolychromeSprite, Quad, Reference, RenderGlyphParams,
     RenderImageParams, RenderSvgParams, ScaledPixels, SceneBuilder, Shadow, SharedString, Size,
@@ -150,8 +150,8 @@ pub struct Window {
     pub(crate) element_id_stack: GlobalElementId,
     prev_frame_element_states: HashMap<GlobalElementId, AnyBox>,
     element_states: HashMap<GlobalElementId, AnyBox>,
-    prev_frame_key_matchers: HashMap<GlobalElementId, KeymapMatcher>,
-    key_matchers: HashMap<GlobalElementId, KeymapMatcher>,
+    prev_frame_key_matchers: HashMap<GlobalElementId, KeyMatcher>,
+    key_matchers: HashMap<GlobalElementId, KeyMatcher>,
     z_index_stack: StackingOrder,
     content_mask_stack: Vec<ContentMask<Pixels>>,
     mouse_listeners: HashMap<TypeId, Vec<(StackingOrder, AnyListener)>>,