about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/keybindings.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-10-03T13·51+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-10-03T13·51+0100
commita8704bb54ddeedd70300d9c938999edf2f1fefc1 (patch)
treefc00732630f6cb6a7a1f2d02f9343cfde879ce47 /emacs/.emacs.d/wpc/keybindings.el
parent990b6278a8a9e456fb86efa47a4a59e903dd95b9 (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/.emacs.d/wpc/keybindings.el')
-rw-r--r--emacs/.emacs.d/wpc/keybindings.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el
index 6886ecf98d..a50f5510d2 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