Skip to content

Commit

Permalink
Linter
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jul 22, 2023
1 parent dcebfde commit 9411aa9
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions cider.el
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,9 @@ double prefix prompt for all these parameters."
(defun cider-jack-in-cljs (params)
"Start an nREPL server for the current project and connect to it.
PARAMS is a plist optionally containing :project-dir, :jack-in-cmd and
:cljs-repl-type (e.g. 'shadow, 'node, 'figwheel, etc). With the prefix argument,
:cljs-repl-type (e.g. 'shadow, 'node, 'figwheel, etc).
With the prefix argument,
allow editing of the jack in command; with a double prefix prompt for all
these parameters."
(interactive "P")
Expand All @@ -1318,9 +1320,12 @@ these parameters."
(defun cider-jack-in-clj&cljs (&optional params soft-cljs-start)
"Start an nREPL server and connect with clj and cljs REPLs.
PARAMS is a plist optionally containing :project-dir, :jack-in-cmd and
:cljs-repl-type (e.g. 'shadow, 'node, 'fighweel, etc). With the prefix argument,
allow for editing of the jack in command; with a double prefix prompt for
all these parameters. When SOFT-CLJS-START is non-nil, start cljs REPL
:cljs-repl-type (e.g. 'shadow, 'node, 'fighweel, etc).
With the prefix argument, allow for editing of the jack in command;
with a double prefix prompt for all these parameters.
When SOFT-CLJS-START is non-nil, start cljs REPL
only when the ClojureScript dependencies are met."
(interactive "P")
(let ((cider-jack-in-dependencies (append cider-jack-in-dependencies cider-jack-in-cljs-dependencies))
Expand Down Expand Up @@ -1372,7 +1377,9 @@ server is created."
(defun cider-connect-sibling-cljs (params &optional other-repl)
"Create a ClojureScript REPL with the same server as OTHER-REPL.
PARAMS is a plist optionally containing :cljs-repl-type (e.g. 'node,
'figwheel, 'shadow, etc). All other parameters are inferred from the OTHER-REPL.
'figwheel, 'shadow, etc).
All other parameters are inferred from the OTHER-REPL.
OTHER-REPL defaults to `cider-current-repl' but in programs can also be a
server buffer, in which case a new session for that server is created."
(interactive "P")
Expand Down

0 comments on commit 9411aa9

Please sign in to comment.