Fix next/previous buffer defuns
This commit is contained in:
parent
6e2fff449c
commit
6e32c4740e
1 changed files with 2 additions and 2 deletions
|
@ -182,13 +182,13 @@ left, create a scratch buffer."
|
|||
(defun narf/next-real-buffer ()
|
||||
"Switch to the next buffer and avoid special buffers."
|
||||
(interactive)
|
||||
(narf/cycle-real-buffers +1))
|
||||
(narf/cycle-real-buffers -1))
|
||||
|
||||
;;;###autoload
|
||||
(defun narf/previous-real-buffer ()
|
||||
"Switch to the previous buffer and avoid special buffers."
|
||||
(interactive)
|
||||
(narf/cycle-real-buffers -1))
|
||||
(narf/cycle-real-buffers +1))
|
||||
|
||||
;;;###autoload (autoload 'narf:kill-buried-buffers "defuns-buffers" nil t)
|
||||
(evil-define-command narf:kill-buried-buffers (&optional bang)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue