更改lein repl提示文本

时间:2018-02-09 19:04:17

标签: clojure leiningen read-eval-print-loop

当我运行lein repl时,我会通过以下提示获得精彩的交互式REPL

user=>

我碰巧在应用程序(作为控制台)上使用lein repl,我喜欢这样的东西:

user(<environment>)=>

;; e.g. when run in production:
user(PRODUCTION)=>

当这用于访问环境中的repl / console时。

1 个答案:

答案 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才能实现此目的。