Variable: proced-filter
proced-filter is a customizable and buffer-local variable defined in
proced.el.gz.
Documentation
Current filter of proced listing.
It can be the car of an element of proced-filter-alist.
It can also be a list of elementary filters as in the cdrs of the elements
of proced-filter-alist.
Source Code
;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defcustom proced-filter 'user
"Current filter of proced listing.
It can be the car of an element of `proced-filter-alist'.
It can also be a list of elementary filters as in the cdrs of the elements
of `proced-filter-alist'."
:type '(choice (symbol :tag "Filter Name")
(repeat :tag "Filters"
(choice (cons :tag "Key . Regexp" (symbol :tag "Key") regexp)
(cons :tag "Key . Function" (symbol :tag "Key") function)
(cons :tag "Function" (const :tag "Key: function" function) function)
(cons :tag "Fun-all" (const :tag "Key: fun-all" fun-all) function))))
:local t)