summaryrefslogtreecommitdiff
path: root/cider-mode.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:41:29 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2016-02-06 23:41:29 +0000
commit3ff8e7b0caa5b84c22199e06f6542b0351513397 (patch)
tree0fe7d61f23c26c764ffb8a3ad5aad2fbb1fe16e3 /cider-mode.el
parent0758324d0a177b894adfa3b113eb3544c4859ded (diff)
Move a colon
Diffstat (limited to 'cider-mode.el')
-rw-r--r--cider-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-mode.el b/cider-mode.el
index a67ff201..22acab8e 100644
--- a/cider-mode.el
+++ b/cider-mode.el
@@ -50,9 +50,9 @@ Info contains project name and host:port endpoint."
(if-let ((current-connection (ignore-errors (cider-current-connection))))
(with-current-buffer current-connection
(concat
- cider-repl-type ":"
+ cider-repl-type
(when cider-mode-line-show-connection
- (format "%s@%s:%s"
+ (format ":%s@%s:%s"
(or (cider--project-name nrepl-project-dir) "<no project>")
(pcase (car nrepl-endpoint)
("localhost" "")