X-Git-Url: https://git.shemshak.org/~bandali/configs/blobdiff_plain/04a268e34909e76750d4a41ea5e042c4903bf8a5..197330785f9a001d49ad6afb33e2e69761fa3169:/init.org diff --git a/init.org b/init.org index 52c1437..9acbd33 100644 --- a/init.org +++ b/init.org @@ -729,6 +729,7 @@ for this. ** Bindings #+begin_src emacs-lisp +(require 'bind-key) (bind-keys ("C-c a i" . ielm) @@ -1183,6 +1184,7 @@ There's no way I could top that, so I won't attempt to. ;; https://oremacs.com/2017/03/18/dired-ediff/ (defun dired-ediff-files () (interactive) + (require 'dired-aux) (defvar ediff-after-quit-hook-internal) (let ((files (dired-get-marked-files)) (wnd (current-window-configuration))) @@ -1202,6 +1204,7 @@ There's no way I could top that, so I won't attempt to. (set-window-configuration wnd)))) (error "no more than 2 files should be marked")))) :bind (:map dired-mode-map + ("b" . dired-up-directory) ("e" . dired-ediff-files) ("E" . dired-toggle-read-only) ("\\" . dired-hide-details-mode)