comparison lisp/uniquify.el @ 22808:435144eea4f4

(uniquify-ignore-buffers-re): Fix custom type.
author Richard M. Stallman <rms@gnu.org>
date Fri, 24 Jul 1998 20:13:08 +0000
parents 26e470569368
children 465ff99f6dd2
comparison
equal deleted inserted replaced
22807:ff685e4dce0b 22808:435144eea4f4
125 other buffer names are changed." 125 other buffer names are changed."
126 :type 'boolean 126 :type 'boolean
127 :group 'uniquify) 127 :group 'uniquify)
128 128
129 (defcustom uniquify-ignore-buffers-re nil 129 (defcustom uniquify-ignore-buffers-re nil
130 "*Regular expression matching buffer names that should not be uniqified. 130 "*Regular expression matching buffer names that should not be uniquified.
131 For instance, set this to \"^draft-[0-9]+$\" to avoid having uniquify rename 131 For instance, set this to \"^draft-[0-9]+$\" to avoid having uniquify rename
132 draft buffers even if `uniquify-after-kill-buffer-p' is non-nil and the 132 draft buffers even if `uniquify-after-kill-buffer-p' is non-nil and the
133 visited file name isn't the same as that of the buffer." 133 visited file name isn't the same as that of the buffer."
134 :type 'boolean 134 :type '(choice (const :tag "Uniquify all buffers" nil) regexp)
135 :group 'uniquify) 135 :group 'uniquify)
136 136
137 (defcustom uniquify-min-dir-content 0 137 (defcustom uniquify-min-dir-content 0
138 "*Minimum number of directory name components included in buffer name." 138 "*Minimum number of directory name components included in buffer name."
139 :type 'integer 139 :type 'integer