Variable: speedbar-indicator-regex
speedbar-indicator-regex is a variable defined in speedbar.el.gz.
Value
" \\(\\*\\|#\\|!\\|%\\)*"
Documentation
Regular expression used when identifying files.
Permits stripping of indicator characters from a line.
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
;; Note: Look for addition place to add indicator lists that
;; use skip-chars instead of a regular expression.
(defvar speedbar-indicator-regex
(concat (regexp-quote speedbar-indicator-separator)
"\\("
(regexp-quote speedbar-vc-indicator)
"\\|"
(regexp-quote (car speedbar-obj-indicator))
"\\|"
(regexp-quote (cdr speedbar-obj-indicator))
"\\|"
(regexp-quote speedbar-object-read-only-indicator)
"\\)*")
"Regular expression used when identifying files.
Permits stripping of indicator characters from a line.")