Skip to content

Commit 4ddac0e

Browse files
committed
Fix indentation
1 parent 035ff00 commit 4ddac0e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

cider.el

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -338,8 +338,8 @@ Throws an error if PROJECT-TYPE is unknown."
338338
;; here we have to account for the possibility that the command is either
339339
;; "npx shadow-cljs" or just "shadow-cljs"
340340
('shadow-cljs (let ((parts (split-string cider-shadow-cljs-command)))
341-
(when-let* ((command (cider--resolve-command (car parts))))
342-
(mapconcat #'identity (cons command (cdr parts)) " "))))
341+
(when-let* ((command (cider--resolve-command (car parts))))
342+
(mapconcat #'identity (cons command (cdr parts)) " "))))
343343
('gradle (cider--resolve-command cider-gradle-command))
344344
(_ (user-error "Unsupported project type `%S'" project-type))))
345345

@@ -359,13 +359,13 @@ Throws an error if PROJECT-TYPE is unknown."
359359
('lein cider-lein-parameters)
360360
('boot cider-boot-parameters)
361361
('clojure-cli (format cider-clojure-cli-parameters
362-
(concat
363-
"["
364-
(mapconcat
365-
(apply-partially #'format "\"%s\"")
366-
(cider-jack-in-normalized-nrepl-middlewares)
367-
", ")
368-
"]")))
362+
(concat
363+
"["
364+
(mapconcat
365+
(apply-partially #'format "\"%s\"")
366+
(cider-jack-in-normalized-nrepl-middlewares)
367+
", ")
368+
"]")))
369369
('shadow-cljs cider-shadow-cljs-parameters)
370370
('gradle cider-gradle-parameters)
371371
(_ (user-error "Unsupported project type `%S'" project-type))))

0 commit comments

Comments
 (0)