diff --git a/src/editor_view/editor_area.rs b/src/editor_view/editor_area.rs index 39cbe54..c1e2404 100644 --- a/src/editor_view/editor_area.rs +++ b/src/editor_view/editor_area.rs @@ -150,8 +150,6 @@ extern "C" { extern "C" { #[wasm_bindgen(js_name = defaultKeymap, thread_local)] static DEFAULT_KEYMAP: Vec; - #[wasm_bindgen(js_name = emacsStyleKeymap, thread_local)] - static EMACS_STYLE_KEYMAP: Vec; #[wasm_bindgen(js_name = historyKeymap, thread_local)] static HISTORY_KEYMAP: Vec; @@ -265,7 +263,6 @@ pub(super) fn editor_area(props: &EditorViewDetailProps) -> Html { &mut vec![ &CLOSE_BRACKETS_KEYMAP, &DEFAULT_KEYMAP, - &EMACS_STYLE_KEYMAP, &SEARCH_KEYMAP, &HISTORY_KEYMAP, &FOLD_KEYMAP,