SymbolServer is a helper package for LanguageServer.jl.
You can start a new symbol server for a given julia environment like this:
using SymbolServer
path_to_julia_env = "/foo/bar"
s = SymbolServerProcess(path_to_julia_env)You can also start a symbol server for the default julia environment if you don't pass any path:
using SymbolServer
s = SymbolServerProcess()You can then call the getstore function.