This commit is contained in:
Conrad Irwin 2024-01-22 09:56:59 -07:00
parent 0903d29ab3
commit c49477746e

View file

@ -1,7 +1,7 @@
/// KeyDispatch is where GPUI deals with binding actions to key events. /// KeyDispatch is where GPUI deals with binding actions to key events.
/// ///
/// The key pieces to making a key binding work are to define an action, /// The key pieces to making a key binding work are to define an action,
/// implement a method that takes that action as a type paramater, /// implement a method that takes that action as a type parameter,
/// and then to register the action during render on a focused node /// and then to register the action during render on a focused node
/// with a keymap context: /// with a keymap context:
/// ///