Skip to content

Commit abeab8d

Browse files
authored
[Fix #185] Improve cmd string splitting (#198)
The following now works: (inf-clojure "clojure -Sdeps \"{:deps {insn/insn {:mvn/version \\\"0.5.4\\\"}}}\"")
1 parent f511dca commit abeab8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inf-clojure.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ process buffer for a list of commands.)"
775775
(let ((default-directory (or project-dir default-directory))
776776
(cmdlist (if (consp cmd)
777777
(list cmd)
778-
(split-string cmd)))
778+
(split-string-and-unquote cmd)))
779779
(repl-type (or (unless prefix-arg
780780
inf-clojure-custom-repl-type)
781781
(car (rassoc cmd inf-clojure-startup-forms))

0 commit comments

Comments
 (0)