fix(projects): unbind M-l from treemacs as it interfered with a global keybinding

This commit is contained in:
2021-10-24 04:03:52 +01:00
parent 3a8dc7944f
commit 09c27ab0a7

View File

@@ -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