DocSeeker.jl provides utilities for handling documentation in local (so far) packages.
The main entry point is searchdocs(needle::AbstractString):
searchdocs("sin")will return a vector of tuples of scores and their corresponding match. Scores are numbers
between 0 and 1, and represent the quality of a given match. Matches are DocObj, which
accumulate lots of metadata about a binding (e.g. name, type, location etc.).
searchdocs takes three keyword arguments:
loaded::Bool = truewill search only packages in the current session, whileloaded = falsewill search in all locally installed packages (actually only those inPkg.installed()). Requires a call toDocSeeker.createdocsdb()beforehand.mod::Module = Mainwill filter out bindings that can't be reached from the given module -- by default every loaded package will be searched.maxreturns::Int = DocSeeker.MAX_RETURN_SIZE = 20will specify the maximum number of the resultsexportedonly::Bool = falsewill search all names a module has, whileexportedonly = trueonly takes exported names into consideration.name_only::Bool = falsewill respect equalities betweenneedleand both a binding's name and its doc text, whilename_only = trueonly respects a equality to a binding's name.
Re-generation of the cache that powers the search in all installed packages can be triggered
via DocSeeker.createdocsdb() (async, so no worries about killing you julia session). For now,
there is no automatic re-generation, though that'll be implemented soon.