目前,我有一个 ClojureScript nREPL,它在3333
. 我想使用 Proto REPL 从 Atom 连接到 nREPL。我现在正在使用cmd+shift+p > nREPL connect > enter host and port
. 之后我运行 atom init 脚本:
atom.commands.add 'atom-text-editor', 'nrepl:connect', ->
protoRepl.executeCode("(shadow.cljs.devtools.api/node-repl)")
有没有办法打开 Proto REPL 并直接从 init 脚本连接而无需手动输入主机和端口?我正在使用
yarn shadow-cljs watch app
谢谢。