Added Easy-hugo to never-skippable-buffers.

This commit is contained in:
tastytea 2019-09-23 16:28:22 +02:00
parent 6b078dd410
commit b248a46f42
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; init.el --- tastytea's Emacs init file.
;; Time-stamp: <2019-09-20T20:04:35+00:00>
;; Time-stamp: <2019-09-23T14:28:01+00:00>
;;; Commentary:
;; I am using this file with Emacs 26, but most of it will probably work with
@ -137,7 +137,7 @@
(defvar my/skippable-buffers '("^\\*" "^magit[:-]")
"Buffer names ignored by `next-buffer' and `previous-buffer'.")
(defvar my/never-skippable-buffers '("^\\*scratch\\*$")
(defvar my/never-skippable-buffers '("^\\*scratch\\*$", "^\\*Easy-hugo\\*$")
"Buffer names never ignored by `next-buffer' and `previous-buffer'.")
(defun my/buffer-predicate (buffer)
"Returns nil if buffer-name matches expression in `my/skippable-buffers'."