Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通过 cider-jack-in 启动启动项目后,如何启动特定的启动任务?
在 repl(dir boot.user)中揭示了build.boot. 但是,通过eg调用一个(dev)没有效果,至少该任务中定义的环服务器无法连接。从命令行使用时boot dev,它可以工作。我需要切换到 cider-jack-in 的原因是它看起来在 shell/cider-connect 方法中没有办法打印/记录到 emacs 缓冲区而不是默认 shell(它与所有编译消息)。
(dir boot.user)
build.boot
(dev)
boot dev
你需要执行
(boot (dev))
调用(dev)将产生您需要传递给boot函数执行的任务函数。
boot