summaryrefslogtreecommitdiff
path: root/cider.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-10-12 11:53:28 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-10-12 15:48:49 +0300
commit7aa985c0d3ae248c9bea09c07eb7d09ebfd7914d (patch)
treef691054a4a0666d5ff58f7cd99ff64bb8fb6b697 /cider.el
parenta5cbaef6bab6351d3a4c725ed15c791065e938c3 (diff)
[Fix #2482] Don't bind nREPL server to ::
Use localhost instead.
Diffstat (limited to 'cider.el')
-rw-r--r--cider.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider.el b/cider.el
index 7410eef7..99714d1c 100644
--- a/cider.el
+++ b/cider.el
@@ -108,7 +108,7 @@ version from the CIDER package or library.")
:safe #'stringp)
(defcustom cider-lein-parameters
- "repl :headless :host ::"
+ "repl :headless :host localhost"
"Params passed to Leiningen to start an nREPL server via `cider-jack-in'."
:type 'string
:group 'cider
@@ -130,7 +130,7 @@ version from the CIDER package or library.")
:package-version '(cider . "0.14.0"))
(defcustom cider-boot-parameters
- "cider.tasks/nrepl-server -b :: wait"
+ "cider.tasks/nrepl-server -b localhost wait"
"Params passed to boot to start an nREPL server via `cider-jack-in'."
:type 'string
:group 'cider