Replace ivy buffer browser with iBuffer
This commit is contained in:
parent
107a59f9b0
commit
a2b6b18a7d
5 changed files with 14 additions and 5 deletions
10
01mac.el
10
01mac.el
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue