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-flag is
non-nil and the visited file name isn't the same as that of the buffer.
Setting this variable directly will not usually take effect; use either
M-x customize (customize) or setopt, or call uniquify--set-option; otherwise
reload your buffers.
Source Code
;; Defined in /usr/src/emacs/lisp/uniquify.el.gz
(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-flag' is
non-nil and the visited file name isn't the same as that of the buffer.
Setting this variable directly will not usually take effect; use either
\\[customize] or `setopt', or call `uniquify--set-option'; otherwise
reload your buffers."
:type '(choice (const :tag "Uniquify all buffers" nil) regexp)
:initialize #'custom-initialize-default
:set #'uniquify--set-option)