Code completion functionality extracted from nREPL.
The functionality here is experimental and the API is subject to changes.
Code completion functionality extracted from nREPL. The functionality here is experimental and the API is subject to changes.
(completions prefix)
(completions prefix ns)
(completions prefix ns options)
Return a sequence of matching completion candidates given a prefix string and an optional current namespace.
Return a sequence of matching completion candidates given a prefix string and an optional current namespace.
(keyword-namespace-aliases prefix ns)
Given a prefix and a namespace, return completion candidates for namespace aliases as auto-resolved keywords.
Given a prefix and a namespace, return completion candidates for namespace aliases as auto-resolved keywords.
(namespaces ns)
Returns a list of potential namespace completions for a given namespace
Returns a list of potential namespace completions for a given namespace
(ns-classes ns)
Returns a list of potential class name completions for a given namespace
Returns a list of potential class name completions for a given namespace
(ns-java-methods ns)
Returns a list of Java method names for a given namespace.
Returns a list of Java method names for a given namespace.
(ns-public-vars ns)
Returns a list of potential public var name completions for a given namespace
Returns a list of potential public var name completions for a given namespace
(ns-vars ns)
Returns a list of all potential var name completions for a given namespace
Returns a list of all potential var name completions for a given namespace
(qualified-auto-resolved-keywords ns-alias prefix ns)
Given a namespace alias, a prefix, and a namespace, return completion candidates for qualified, auto-resolved keywords (e.g. ::foo/bar).
Given a namespace alias, a prefix, and a namespace, return completion candidates for qualified, auto-resolved keywords (e.g. ::foo/bar).
(single-colon-keywords prefix)
Given a prefix, return completion candidates for keywords that are either unqualified or qualified with a synthetic namespace.
Given a prefix, return completion candidates for keywords that are either unqualified or qualified with a synthetic namespace.
(static-members class)
Returns a list of potential static members for a given class
Returns a list of potential static members for a given class
(unqualified-auto-resolved-keywords prefix ns)
Given a prefix and a namespace, return completion candidates for keywords that belong to the given namespace.
Given a prefix and a namespace, return completion candidates for keywords that belong to the given namespace.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close