From d73c7c68a61e4932c737e58f9c579194a069b001 Mon Sep 17 00:00:00 2001 From: gered Date: Sun, 19 Jan 2025 16:34:37 -0500 Subject: [PATCH] unbind dired keys which conflict with my custom buffer cycling keybinds --- emacs.d/dired.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/emacs.d/dired.el b/emacs.d/dired.el index 73e8b81..70b62c3 100644 --- a/emacs.d/dired.el +++ b/emacs.d/dired.el @@ -12,6 +12,8 @@ ( :map dired-mode-map ("." . dired-omit-mode)) :config + (unbind-key (kbd "M-{") dired-mode-map) + (unbind-key (kbd "M-}") dired-mode-map) (setq dired-omit-files "^\\.") (setq dired-listing-switches "-AGFhlv --group-directories-first --time-style=long-iso") (setq dired-recursive-copies 'always)