Replace ivy buffer browser with iBuffer

This commit is contained in:
Maciej 2019-10-28 22:12:25 +02:00
parent 107a59f9b0
commit a2b6b18a7d
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
5 changed files with 14 additions and 5 deletions

View file

@ -75,6 +75,16 @@
;; Kill current buffer and window
(global-set-key (kbd "C-c q") 'kill-buffer-and-window)
;; ibuffer
(global-set-key (kbd "C-c b") 'ibuffer)
;; Revert without asking
(defun revert-buffer-no-confirm ()
"Revert buffer without confirmation."
(interactive) (revert-buffer t t))
(global-set-key (kbd "C-c r") 'revert-buffer-no-confirm)
;; Create new terminal
(global-set-key (kbd "<f12>") (lambda ()
(interactive)