3

在处理 clojure 源代码时,我经常发现自己在反复输入(ns user)和按。C+c M+n问题是我经常使用像sourceand之类的函数doc,它们在clojure.repl并且我不想将:require它们添加到我的命名空间中。在这种情况下,有经验的clojurians 在做什么?

澄清:我知道 clojure 的命名空间是如何工作的。我想要实现的是能够调用(source myfunc)(doc myfunc)等等,而不需要在 REPL 中使用完全限定的名称,也不clojure.repl需要在我的每个命名空间中使用函数。

4

2 回答 2

4

感谢您清理您的要求。

Leiningen 有一个名为:injections的功能,您可以将其与 vinyasa 结合使用来获得这种效果如果您在 leiningen 个人资料中添加这样的内容:

~/lein/profiles.clj:

{:user {:plugins []
        :dependencies [[im.chit/vinyasa "0.1.8"]]
        :injections [(require 'vinyasa.inject)
                      (vinyasa.inject/inject
                       'clojure.core '>
                       '[[clojure.repl doc source]
                         [clojure.pprint pprint pp]])]}}

因为这在您的profiles.clj 中,所以它只会影响您。其他参与该项目的人不会受到影响。


因为注入 clojure.core 让我觉得有点不确定,所以我遵循 vinyasa 作者的建议并注入一个名为 . 这是由我的个人资料为我从事的每个项目创建的。这个命名空间始终存在,这使得这些函数即使在尚未引用 clojure.core 的新创建的命名空间中也能正常工作。

我的 ~/.lein/profiles.clj:

{:user
  {:plugins []
   :dependencies [[spyscope "0.1.4"]
                  [org.clojure/tools.namespace "0.2.4"]
                  [io.aviso/pretty "0.1.8"]
                  [im.chit/vinyasa "0.4.7"]]
   :injections
   [(require 'spyscope.core)
    (require '[vinyasa.inject :as inject])
    (require 'io.aviso.repl)
    (inject/in ;; the default injected namespace is `.`

               ;; note that `:refer, :all and :exclude can be used
               [vinyasa.inject :refer [inject [in inject-in]]]
               [clojure.pprint :refer [pprint]]
               [clojure.java.shell :refer [sh]]
               [clojure.repl :refer [doc source]]
               [vinyasa.maven pull]
               [vinyasa.reflection .> .? .* .% .%> .& .>ns .>var])]}}

像这样工作:

hello.core> (./doc first)
-------------------------
clojure.core/first
([coll])
  Returns the first item in the collection. Calls seq on its
    argument. If coll is nil, returns nil.
nil
hello.core> (in-ns 'new-namespace)
#namespace[new-namespace]
new-namespace> (./doc first)
nil
new-namespace> (clojure.core/refer-clojure)
nil
new-namespace> (./doc first)
-------------------------
clojure.core/first
([coll])
  Returns the first item in the collection. Calls seq on its
    argument. If coll is nil, returns nil.
nil
于 2016-07-07T18:48:03.530 回答
1

为此,您可以使用vinyasa库,尤其是它的inject功能。基本上,您需要将所需的功能从clojure.repl命名空间添加到clojure.core命名空间。在您不需要明确要求它们之后。请参阅以下内容:

user> (require '[vinyasa.inject :refer [inject]])
nil

;; injecting `source` and `doc` symbols to clojure.core
user> (inject '[clojure.core [clojure.repl source doc]]) 
[]

;; switching to some other namespace
user> (require 'my-project.core)
nil
user> (in-ns 'my-project.core)
#namespace[my-project.core]

;; now those functions are accessible w/o qualifier
my-project.core> (doc vector) 
-------------------------
clojure.core/vector
([] [a] [a b] [a b c] [a b c d] [a b c d e] [a b c d e f] [a b c d e f & args])
  Creates a new vector containing the args.
nil
于 2016-07-07T19:45:40.740 回答