更改 lein repl 提示文本
Changing the lein repl prompt text
当我 运行 lein repl
我得到一个很棒的交互式 REPL,并带有以下提示
user=>
我碰巧在应用程序上使用了 lein repl(作为控制台),我很想拥有类似的东西:
user(<environment>)=>
;; e.g. when run in production:
user(PRODUCTION)=>
当这用于访问环境中的 repl/console 时。
您可以将生产配置文件添加到您的 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
添加到您的依赖项中才能正常工作。
当我 运行 lein repl
我得到一个很棒的交互式 REPL,并带有以下提示
user=>
我碰巧在应用程序上使用了 lein repl(作为控制台),我很想拥有类似的东西:
user(<environment>)=>
;; e.g. when run in production:
user(PRODUCTION)=>
当这用于访问环境中的 repl/console 时。
您可以将生产配置文件添加到您的 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
添加到您的依赖项中才能正常工作。