Skip to main content

fret_runtime/keymap/
mod.rs

1mod conflicts;
2mod display;
3mod error;
4mod load;
5mod ops;
6mod service;
7mod types;
8mod wire;
9
10#[cfg(test)]
11mod tests;
12
13pub use error::KeymapError;
14pub use service::KeymapService;
15pub use types::{
16    Binding, DefaultKeybinding, Keymap, KeymapBindingSignature, KeymapConflict,
17    KeymapConflictEntry, KeymapConflictKind, KeymapContinuation, KeymapLoadOptions, PlatformFilter,
18    SequenceMatch, WhenValidationMode,
19};
20pub use wire::{BindingV1, KeySpecV1, KeymapFileV1};