From c0b7096b7bd0dddf056d2c184c0cfc0090b6b7f6 Mon Sep 17 00:00:00 2001 From: Tim McCarthy Date: Sat, 27 Apr 2024 23:47:08 -0700 Subject: [PATCH] Unbind Magit's C-j --- thoom-emacs/modules/thoom-editing.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/thoom-emacs/modules/thoom-editing.el b/thoom-emacs/modules/thoom-editing.el index cc99292..9315604 100644 --- a/thoom-emacs/modules/thoom-editing.el +++ b/thoom-emacs/modules/thoom-editing.el @@ -27,9 +27,11 @@ (("C-j" . avy-goto-char-timer) ([remap goto-line] . avy-goto-line) :map org-mode-map - ("C-j" . avy-goto-char-timer) + ("C-j" . nil) :map isearch-mode-map - ("C-j" . avy-isearch)) + ("C-j" . avy-isearch) + :map magit-file-section-map + ("C-j" . nil)) :init (setq avy-timeout-seconds 0.25)