Skip to content

Commit 2f28196

Browse files
dpsuttonbbatsov
authored andcommitted
Hide all others stack frames when viewing project only (#2064)
1 parent aad32a7 commit 2f28196

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
### Bugs Fixed
1010

11+
* Project-Only stacktrace filter: hide all other tags when viewing project-only stacktrace.
1112
* Fix interactive evaluation in cljc buffers with only one connection.
1213
* [#2058](https://github.com/clojure-emacs/cider/pull/2058) Don't cache ns-forms in buffers with no such forms.
1314
* [#2057](https://github.com/clojure-emacs/cider/pull/2057) Use `cider--font-lock-ensure` for compatibility with Emacs 24.5.

cider-stacktrace.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ with the button."
500500
(if (null cider-stacktrace-positive-filters)
501501
(progn
502502
(setq-local cider-stacktrace-prior-filters cider-stacktrace-filters)
503-
(setq-local cider-stacktrace-filters cider-stacktrace-filters)
503+
(setq-local cider-stacktrace-filters cider-stacktrace--all-negative-filters)
504504
(setq-local cider-stacktrace-positive-filters '(project)))
505505
(progn
506506
(setq-local cider-stacktrace-filters cider-stacktrace-prior-filters)

0 commit comments

Comments
 (0)