From 291e6683a3b9d788a578d2f3897697ce4bc89e7f Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 5 Oct 2011 11:54:50 +0100 Subject: [PATCH] use IBuffer instead of standard buffer mode with C-x C-b --- keybindings.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/keybindings.el b/keybindings.el index 2ed7ce7..1bde486 100644 --- a/keybindings.el +++ b/keybindings.el @@ -2,6 +2,10 @@ ;; Setup a few global keyboard shortcuts ;; +;; IBuffer +(when (require 'ibuffer nil 'noerror) + (global-set-key (kbd "C-x C-b") 'ibuffer)) + ;; Undo/Redo (via undo-tree) (when (require 'undo-tree nil 'noerror) (global-set-key (kbd "s-z") 'undo-tree-undo)