diff options
author | William Carroll <wpcarro@gmail.com> | 2020-10-03T13·51+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-10-03T13·51+0100 |
commit | a8704bb54ddeedd70300d9c938999edf2f1fefc1 (patch) | |
tree | fc00732630f6cb6a7a1f2d02f9343cfde879ce47 /emacs | |
parent | 990b6278a8a9e456fb86efa47a4a59e903dd95b9 (diff) |
Define KBDs for ibuffer
I'd like to start using ibuffer more, so I'm making it a more hospitable place by defining useful KBDs.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index 6886ecf98dd2..a50f5510d2a1 100644 --- a/emacs/.emacs.d/wpc/keybindings.el +++ b/emacs/.emacs.d/wpc/keybindings.el @@ -316,6 +316,15 @@ "g l" #'Info-history-back "g t" #'Info-toc) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; ibuffer +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(general-define-key + :states '(normal) + :keymaps '(ibuffer-mode-map) + "M-j" nil + "K" #'ibuffer-do-delete) (provide 'keybindings) ;;; keybindings.el ends here |