Fork me on GitHub
#cider
<
2023-01-10
>
motform08:01:37

I'm trying to create a command that connect to the project default unix domain socket, but it does not seem to register my params. Am I doing anything wrong, should this go in configuration variables somewhere else?

(defun cider-connect-default-unix-socket ()
	"Connect cider to the default unix socket in `PROJECT-CURRENT'."
	(interactive)
	(let ((socket-file (concat (car (last (project-current))) "nrepl-socket")))
	  (cider-connect-clj '(:host "local-unix-domain-socket" :socket-file socket-file))))