summaryrefslogtreecommitdiff
path: root/cider.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-09-23 11:54:34 +0400
committerBozhidar Batsov <bozhidar@batsov.com>2018-09-23 11:54:34 +0400
commitfa377fc601cbac7d928aee842176dc17f09470fb (patch)
treeb3499568619b538fecec0712334749e128a1fe21 /cider.el
parent0dc98a18ea9eb6c53cfac5f00b6158ce610679de (diff)
Update the links to the manual
ReadTheDocs finally supports https for custom domains.
Diffstat (limited to 'cider.el')
-rw-r--r--cider.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/cider.el b/cider.el
index 7324fef0..77eeae10 100644
--- a/cider.el
+++ b/cider.el
@@ -67,7 +67,7 @@
:prefix "cider-"
:group 'applications
:link '(url-link :tag "GitHub" "https://github.com/clojure-emacs/cider")
- :link '(url-link :tag "Online Manual" "http://docs.cider.mx")
+ :link '(url-link :tag "Online Manual" "https://docs.cider.mx")
:link '(emacs-commentary-link :tag "Commentary" "cider"))
(require 'cider-client)
@@ -652,12 +652,12 @@ Generally you should not disable this unless you run into some faulty check."
(defun cider-verify-clojurescript-is-present ()
"Check whether ClojureScript is present."
(unless (cider-library-present-p "clojure/clojurescript")
- (user-error "ClojureScript is not available. See http://docs.cider.mx/en/latest/clojurescript for details")))
+ (user-error "ClojureScript is not available. See https://docs.cider.mx/en/latest/clojurescript for details")))
(defun cider-verify-piggieback-is-present ()
"Check whether the piggieback middleware is present."
(unless (cider-library-present-p "cider/piggieback")
- (user-error "Piggieback is not available. See http://docs.cider.mx/en/latest/clojurescript for details")))
+ (user-error "Piggieback is not available. See https://docs.cider.mx/en/latest/clojurescript for details")))
(defun cider-check-nashorn-requirements ()
"Check whether we can start a Nashorn ClojureScript REPL."
@@ -673,19 +673,19 @@ Generally you should not disable this unless you run into some faulty check."
"Check whether we can start a Figwheel ClojureScript REPL."
(cider-verify-piggieback-is-present)
(unless (cider-library-present-p "figwheel-sidecar/figwheel-sidecar")
- (user-error "Figwheel-sidecar is not available. Please check http://docs.cider.mx/en/latest/clojurescript")))
+ (user-error "Figwheel-sidecar is not available. Please check https://docs.cider.mx/en/latest/clojurescript")))
(defun cider-check-figwheel-main-requirements ()
"Check whether we can start a Figwheel ClojureScript REPL."
(cider-verify-piggieback-is-present)
(unless (cider-library-present-p "bhauman/figwheel-main")
- (user-error "Figwheel-main is not available. Please check http://docs.cider.mx/en/latest/clojurescript")))
+ (user-error "Figwheel-main is not available. Please check https://docs.cider.mx/en/latest/clojurescript")))
(defun cider-check-weasel-requirements ()
"Check whether we can start a Weasel ClojureScript REPL."
(cider-verify-piggieback-is-present)
(unless (cider-library-present-p "weasel/weasel")
- (user-error "Weasel in not available. Please check http://docs.cider.mx/en/latest/clojurescript/#browser-connected-clojurescript-repl")))
+ (user-error "Weasel in not available. Please check https://docs.cider.mx/en/latest/clojurescript/#browser-connected-clojurescript-repl")))
(defun cider-check-boot-requirements ()
"Check whether we can start a Boot ClojureScript REPL."