summaryrefslogtreecommitdiff
path: root/cider-interaction.el
diff options
context:
space:
mode:
Diffstat (limited to 'cider-interaction.el')
-rw-r--r--cider-interaction.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/cider-interaction.el b/cider-interaction.el
index ce6c22c4..b815e85f 100644
--- a/cider-interaction.el
+++ b/cider-interaction.el
@@ -297,9 +297,13 @@ Signal an error if it is not supported."
(if nrepl-version
(when (version< nrepl-version cider-required-nrepl-version)
(cider-repl-emit-interactive-err-output
- (format "WARNING: CIDER requires nREPL %s (or newer) to work properly" cider-required-nrepl-version)))
+ (cider--insert-readme-button
+ (format "WARNING: CIDER requires nREPL %s (or newer) to work properly"
+ cider-required-nrepl-version)
+ "warning-saying-you-have-to-use-nrepl-027")))
(cider-repl-emit-interactive-err-output
- (format "WARNING: Can't determine nREPL's version. Please, update nREPL to %s." cider-required-nrepl-version)))))
+ (format "WARNING: Can't determine nREPL's version. Please, update nREPL to %s."
+ cider-required-nrepl-version)))))
(defun cider--check-middleware-compatibility-callback (buffer)
"A callback to check if the middleware used is compatible with CIDER."