我想在启动lein repl
时在所有项目中使用lein插件功能。
我想通过将函数发送到emacs中的cider repl来调用该函数。
但我不想在lein project
文件中声明它。
例如,
有一个名为plugin-test
的lein插件,并定义了一个函数
(defproject plugin-test "0.1.0")
(defn p-test[]
(println "...."))
我在~/.lein/profiles.clj
文件中添加插件。
然后我跳到我的lein项目目录并运行lein repl
现在,如何加载plugin-test
并调用函数p-test
?