Fork me on GitHub
#cider
<
2022-12-14
>
Benjamin10:12:51

Lol chat gpt knows cider code

(defun cider-jack-in-nbb-2 ()
  (interactive)
  (cider-jack-in '(:jack-in-cmd "nbb nrepl-server")))
add a docstring Here is a suggested docstring for the cider-jack-in-nbb-2 function:
(defun cider-jack-in-nbb-2 ()
  "Start a Cider nREPL server with the `nbb nrepl-server` command."
  (interactive)
  (cider-jack-in
   '(:jack-in-cmd "nbb nrepl-server")))
This docstring describes what the function does and how it is used. It specifies that the function starts a Cider nREPL server using the nbb nrepl-server command. It also indicates that the function is interactive, which means it can be called directly from the user interface.

👍 1