Fix next/previous buffer defuns

This commit is contained in:
Henrik Lissner 2015-11-17 21:49:15 -05:00
parent 6e2fff449c
commit 6e32c4740e

View file

@ -182,13 +182,13 @@ left, create a scratch buffer."
(defun narf/next-real-buffer () (defun narf/next-real-buffer ()
"Switch to the next buffer and avoid special buffers." "Switch to the next buffer and avoid special buffers."
(interactive) (interactive)
(narf/cycle-real-buffers +1)) (narf/cycle-real-buffers -1))
;;;###autoload ;;;###autoload
(defun narf/previous-real-buffer () (defun narf/previous-real-buffer ()
"Switch to the previous buffer and avoid special buffers." "Switch to the previous buffer and avoid special buffers."
(interactive) (interactive)
(narf/cycle-real-buffers -1)) (narf/cycle-real-buffers +1))
;;;###autoload (autoload 'narf:kill-buried-buffers "defuns-buffers" nil t) ;;;###autoload (autoload 'narf:kill-buried-buffers "defuns-buffers" nil t)
(evil-define-command narf:kill-buried-buffers (&optional bang) (evil-define-command narf:kill-buried-buffers (&optional bang)