From 1a1ba0d412a2c9c98da12c66a4829a4b77eba47a Mon Sep 17 00:00:00 2001 From: Andy Stewart Date: Wed, 26 Feb 2020 13:41:51 +0800 Subject: [PATCH] Use deletechar instead M-o --- eaf.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eaf.el b/eaf.el index e8a9f83..4216cb0 100644 --- a/eaf.el +++ b/eaf.el @@ -420,7 +420,7 @@ Try not to modify this alist directly. Use `eaf-setq' to modify instead." (defcustom eaf-mindmap-keybinding '(("TAB" . "add_sub_node") - ("M-o" . "remove_node") + ("" . "remove_node") ("M-m" . "update_node_topic") ("M-r" . "refresh_page") ("C--" . "zoom_out") @@ -1300,7 +1300,7 @@ This function works best if paired with a fuzzy search package." (if history-file-exists (mapcar (lambda (h) (when (string-match history-pattern h) - (format "[%s] ⇰ %s" (match-string 1 h) (match-string 2 h)))) + (format "[%s] ⇰ %s" (match-string 1 h) (match-string 2 h)))) (with-temp-buffer (insert-file-contents browser-history-file-path) (split-string (buffer-string) "\n" t))) nil)))