Not sure if this is a vim-clojure-static or vim-clojure-highlight issue.
Names that contain ' become clojureSymbol instead of clojureFunc when using vim-clojure-highlight.
Also, another problem with ' is the following:
(defn some-func [args] body)
(defn some-other-func [args]
(let [some-func' (fn ...)]
...))
In this case, the some-func part of the name some-func' becomes clojureFunc while the ' becomes clojureQuote, resulting in a name with two colors in it, which can be confusing. Normally, the name in the let should be a clojureSymbol, but it seems that because some-func is also a function this happens somehow.
Not sure if this is a vim-clojure-static or vim-clojure-highlight issue.
Names that contain
'becomeclojureSymbolinstead ofclojureFuncwhen using vim-clojure-highlight.Also, another problem with
'is the following:In this case, the
some-funcpart of the namesome-func'becomesclojureFuncwhile the'becomesclojureQuote, resulting in a name with two colors in it, which can be confusing. Normally, the name in the let should be aclojureSymbol, but it seems that becausesome-funcis also a function this happens somehow.