From 86555fa3c4562171845fc87829d1f81eb3f37d7b Mon Sep 17 00:00:00 2001 From: Roman Scherer Date: Tue, 29 Oct 2024 20:55:24 +0100 Subject: [PATCH] Use description from transient command --- cider-log.el | 3 +-- doc/modules/ROOT/pages/debugging/logging.adoc | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cider-log.el b/cider-log.el index b5d314088..c8caae1ce 100644 --- a/cider-log.el +++ b/cider-log.el @@ -1476,8 +1476,7 @@ based on `transient-mode'." (transient-define-prefix cider-log (framework appender) "Show the Cider log menu." [["Framework Actions" - ("fa" cider-log-frameworks - :description "Show frameworks in a buffer.") + ("fa" cider-log-frameworks) ("fs" cider-log-set-framework) ("fb" cider-log-set-buffer) ("fj" cider-log-browse-javadocs) diff --git a/doc/modules/ROOT/pages/debugging/logging.adoc b/doc/modules/ROOT/pages/debugging/logging.adoc index 6d9fd5586..e3dddd084 100644 --- a/doc/modules/ROOT/pages/debugging/logging.adoc +++ b/doc/modules/ROOT/pages/debugging/logging.adoc @@ -360,5 +360,5 @@ using logical AND condition. The following filters are available: == Troubleshooting - Make sure the logging library is actually supported by CIDER Log Mode and that it is on your classpath. -- Try requiring the https://github.com/clojure-emacs/logjam/tree/master/src/logjam/framework[Logjam] namespace of the logging libre, e.g. `(require 'logjam.framework. :reload)` and make sure it can be loaded without errors. +- Try requiring the https://github.com/clojure-emacs/logjam/tree/master/src/logjam/framework[Logjam] namespace of the logging library, e.g. `(require 'logjam.framework. :reload)` and make sure it can be loaded without errors. - Timbre and Encore often have to be upgraded in concert, they use "break versioning". It's often useful to have Timbre + Encore at the latest stable version.