From 09c27ab0a7fa4dd41ed2f6384e471b4c91b6ae00 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 24 Oct 2021 04:03:52 +0100 Subject: [PATCH] fix(projects): unbind M-l from treemacs as it interfered with a global keybinding --- modules/projects/siren-treemacs.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/projects/siren-treemacs.el b/modules/projects/siren-treemacs.el index 2160a50..1353df1 100644 --- a/modules/projects/siren-treemacs.el +++ b/modules/projects/siren-treemacs.el @@ -58,7 +58,10 @@ (treemacs-define-RET-action 'file-node-open #'treemacs-visit-node-in-most-recently-used-window) (treemacs-define-RET-action - 'file-node-closed #'treemacs-visit-node-in-most-recently-used-window)) + 'file-node-closed #'treemacs-visit-node-in-most-recently-used-window) + + ;; Unbind keys which conflict with global keybindings I use. + (unbind-key "M-l" treemacs-mode-map)) (use-package treemacs-all-the-icons :defer t