Function: cider-stacktrace-filter
cider-stacktrace-filter is a byte-compiled function defined in
cider-stacktrace.el.
Signature
(cider-stacktrace-filter BUTTON)
Documentation
Apply filter(s) indicated by the BUTTON.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-stacktrace.el
;; Text button functions
(defun cider-stacktrace-filter (button)
"Apply filter(s) indicated by the BUTTON."
(with-temp-message "Filters may also be toggled with the keyboard."
(let ((flag (button-get button 'filter)))
(cond ((member flag cider-stacktrace--all-negative-filters)
(cider-stacktrace-toggle flag))
((member flag cider-stacktrace--all-positive-filters)
(cider-stacktrace-show-only-project))
(t (cider-stacktrace-toggle-all))))
(sit-for 5)))