diff options
| -rw-r--r-- | emacs-config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index f0964bc..b20fa34 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -142,3 +142,10 @@ Help actions. (keymap-global-set "C-h M" #'describe-keymap) (keymap-global-set "C-h j" #'describe-char) #+end_src +* Version Control +Rebind diff-mode's ~diff-goto-source~ keybinding due to conflict with =M-o=. +#+begin_src elisp + (with-eval-after-load 'diff-mode + (keymap-set diff-mode-map "M-o" #'other-window) + (keymap-set diff-mode-map "M-j" #'diff-goto-source)) +#+end_src |
