summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-22 14:45:43 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-22 14:45:43 +0200
commit4ddac0e9715c6252b75bb8ec940ad0f4d2b219b5 (patch)
tree90212293b8a70d4bd9e68e94018f33af5e63f97b
parent035ff007a90d2d6e65096a31dd018566d9f94741 (diff)
Fix indentation
-rw-r--r--cider.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/cider.el b/cider.el
index 2ca1abb6..0f09b268 100644
--- a/cider.el
+++ b/cider.el
@@ -338,8 +338,8 @@ Throws an error if PROJECT-TYPE is unknown."
;; here we have to account for the possibility that the command is either
;; "npx shadow-cljs" or just "shadow-cljs"
('shadow-cljs (let ((parts (split-string cider-shadow-cljs-command)))
- (when-let* ((command (cider--resolve-command (car parts))))
- (mapconcat #'identity (cons command (cdr parts)) " "))))
+ (when-let* ((command (cider--resolve-command (car parts))))
+ (mapconcat #'identity (cons command (cdr parts)) " "))))
('gradle (cider--resolve-command cider-gradle-command))
(_ (user-error "Unsupported project type `%S'" project-type))))
@@ -359,13 +359,13 @@ Throws an error if PROJECT-TYPE is unknown."
('lein cider-lein-parameters)
('boot cider-boot-parameters)
('clojure-cli (format cider-clojure-cli-parameters
- (concat
- "["
- (mapconcat
- (apply-partially #'format "\"%s\"")
- (cider-jack-in-normalized-nrepl-middlewares)
- ", ")
- "]")))
+ (concat
+ "["
+ (mapconcat
+ (apply-partially #'format "\"%s\"")
+ (cider-jack-in-normalized-nrepl-middlewares)
+ ", ")
+ "]")))
('shadow-cljs cider-shadow-cljs-parameters)
('gradle cider-gradle-parameters)
(_ (user-error "Unsupported project type `%S'" project-type))))