Liking cljdoc? Tell your friends :D

cljs-tooling.complete

Standalone auto-complete library based on cljs analyzer state

Standalone auto-complete library based on cljs analyzer state
raw docstring

all-ns-candidatesclj/s

(all-ns-candidates env)

Returns candidate data for all namespaces in the environment.

Returns candidate data for all namespaces in the environment.
sourceraw docstring

completionsclj/s

(completions env prefix)
(completions env prefix options-map)

Returns a sequence of candidate data for completions matching the given prefix string and options. If the third parameter is a string it's used as :context-ns option.

  • :context-ns - (optional) the current namespace;
  • :extra-metadata - set of additional fields (:arglists, :doc) to add to the response maps.
Returns a sequence of candidate data for completions matching the given
prefix string and options. If the third parameter is a string it's used
as :context-ns option.

- :context-ns - (optional) the current namespace;
- :extra-metadata - set of additional fields (:arglists, :doc) to add to the response maps.
sourceraw docstring

core-macro-candidatesclj/s

(core-macro-candidates env ns)
source

core-var-candidatesclj/s

(core-var-candidates env context-ns)

Returns candidate data for all cljs.core vars visible in context-ns.

Returns candidate data for all cljs.core vars visible in context-ns.
sourceraw docstring

import-candidatesclj/s

(import-candidates env context-ns)

Returns candidate data for all imports in context-ns.

Returns candidate data for all imports in context-ns.
sourceraw docstring

keyword-candidatesclj/s

(keyword-candidates env)

Returns candidate data for all keyword constants in the environment.

Returns candidate data for all keyword constants in the environment.
sourceraw docstring

macro-candidatesclj/s

(macro-candidates macros)
source

macro-ns-candidatesclj/s

(macro-ns-candidates env context-ns)

Returns candidate data for all referred macro namespaces (and their aliases) in context-ns.

Returns candidate data for all referred macro namespaces (and their aliases) in
context-ns.
sourceraw docstring

namespaced-keyword-candidatesclj/s

(namespaced-keyword-candidates env context-ns)

Returns all namespaced keywords defined in context-ns.

Returns all namespaced keywords defined in context-ns.
sourceraw docstring

ns-candidatesclj/s

(ns-candidates env context-ns)

Returns candidate data for all referred namespaces (and their aliases) in context-ns.

Returns candidate data for all referred namespaces (and their aliases) in context-ns.
sourceraw docstring

ns-macro-candidatesclj/s

(ns-macro-candidates env ns)

Returns candidate data for all macros defined in ns.

Returns candidate data for all macros defined in ns.
sourceraw docstring

ns-public-var-candidatesclj/s

(ns-public-var-candidates env ns)

Returns candidate data for all public vars defined in ns.

Returns candidate data for all public vars defined in ns.
sourceraw docstring

ns-var-candidatesclj/s

(ns-var-candidates env ns)

Returns candidate data for all vars defined in ns.

Returns candidate data for all vars defined in ns.
sourceraw docstring

potential-candidatesclj/s

(potential-candidates env sym context-ns)

Returns all candidates for sym. If sym is namespace-qualified, the candidates for that namespace will be returned (including macros if the namespace has its macros required in context-ns). Otherwise, all non-namespace-qualified candidates for context-ns will be returned.

Returns all candidates for sym. If sym is namespace-qualified, the candidates
for that namespace will be returned (including macros if the namespace has its
macros required in context-ns). Otherwise, all non-namespace-qualified
candidates for context-ns will be returned.
sourceraw docstring

referred-macro-candidatesclj/s

(referred-macro-candidates env context-ns)

Returns candidate data for all referred macros in context-ns.

Returns candidate data for all referred macros in context-ns.
sourceraw docstring

referred-namespaced-keyword-candidatesclj/s

(referred-namespaced-keyword-candidates env context-ns)

Returns all namespaced keywords referred in context-ns.

Returns all namespaced keywords referred in context-ns.
sourceraw docstring

referred-var-candidatesclj/s

(referred-var-candidates env context-ns)

Returns candidate data for all referred vars in context-ns.

Returns candidate data for all referred vars in context-ns.
sourceraw docstring

scoped-candidatesclj/s

(scoped-candidates env sym context-ns)

Returns all candidates for the namespace of sym. Sym must be namespace-qualified. Macro candidates are included if the namespace has its macros required in context-ns.

Returns all candidates for the namespace of sym. Sym must be
namespace-qualified. Macro candidates are included if the namespace has its
macros required in context-ns.
sourceraw docstring

special-form-candidatesclj/s

Candidate data for all special forms.

Candidate data for all special forms.
sourceraw docstring

special-formsclj/s

source

unscoped-candidatesclj/s

(unscoped-candidates env context-ns)

Returns all non-namespace-qualified potential candidates in context-ns.

Returns all non-namespace-qualified potential candidates in context-ns.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close