Variable: uniquify-ignore-buffers-re
uniquify-ignore-buffers-re is a customizable variable defined in
uniquify.el.gz.
Value
nil
Documentation
Regular expression matching buffer names that should not be uniquified.
For instance, set this to "^draft-[0-9]+$" to avoid having uniquify rename
draft buffers even if uniquify-after-kill-buffer-p is non-nil and the
visited file name isn't the same as that of the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/uniquify.el.gz
;; The default value matches certain Gnus buffers.
(defcustom uniquify-ignore-buffers-re nil
"Regular expression matching buffer names that should not be uniquified.
For instance, set this to \"^draft-[0-9]+$\" to avoid having uniquify rename
draft buffers even if `uniquify-after-kill-buffer-p' is non-nil and the
visited file name isn't the same as that of the buffer."
:type '(choice (const :tag "Uniquify all buffers" nil) regexp))