diff --git a/helix-term/src/commands/engine/steel.rs b/helix-term/src/commands/engine/steel.rs index 1c689e3e2..075df0703 100644 --- a/helix-term/src/commands/engine/steel.rs +++ b/helix-term/src/commands/engine/steel.rs @@ -177,11 +177,6 @@ where res } -// Handle buffer and extension specific keybindings in userspace. -pub static BUFFER_OR_EXTENSION_KEYBINDING_MAP: Lazy = - Lazy::new(|| SteelVal::boxed(SteelVal::empty_hashmap())); - -// TODO: Move this on to the configuration struct directly pub static BUFFER_EXTENSION_KEYMAP: Lazy> = Lazy::new(|| { RwLock::new(BufferExtensionKeyMap { map: HashMap::new(), @@ -224,9 +219,6 @@ fn add_reverse_mapping(key: usize, label: String) { .insert(key, label); } -pub static REVERSE_BUFFER_MAP: Lazy = - Lazy::new(|| SteelVal::boxed(SteelVal::empty_hashmap())); - fn load_component_api(engine: &mut Engine, generate_sources: bool) { let module = helix_component_module(generate_sources);