当我运行lein repl
时,我会通过以下提示获得精彩的交互式REPL
user=>
我碰巧在应用程序(作为控制台)上使用lein repl,我喜欢这样的东西:
user(<environment>)=>
;; e.g. when run in production:
user(PRODUCTION)=>
当这用于访问环境中的repl / console时。
答案 0 :(得分:4)
您可以将生产配置文件添加到project.clj并指定自定义提示功能:
:profiles {:production
{:repl-options
{:prompt (fn [ns] (format "%s(PRODUCTION)=> " ns))}}}
然后lein with-profile production repl
。我想你可以在没有个人资料的情况下做同样的事情,但你的提示功能需要弄清楚它所处的环境。也许是这样的:
:repl-options {:prompt (fn [ns] (format "%s(%s) => " ns (System/getenv "HOME")))}
您可能还需要向依赖项添加org.clojure/tools.nrepl
才能实现此目的。