Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update misc.jl
  • Loading branch information
ZacLN authored Jul 30, 2019
commit 84d56be5f898cee8e907af78717a2b48db32c29a
24 changes: 24 additions & 0 deletions src/requests/misc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -146,3 +146,27 @@ function process(r::JSONRPC.Request{Val{Symbol("julia/activateenvironment")}}, s
end
@info "Finished reparsing everything"
end

function JSONRPC.parse_params(::Type{Val{Symbol("julia/help")}}, params)
params
end

function process(r::JSONRPC.Request{Val{Symbol("julia/help")},String}, server)
ex = Meta.parse(r.params)
if ex isa Symbol
d = REPL.lookup_doc(ex)
if d isa Markdown.MD
send(JSONRPC.Response(r.id, string(d)), server)
return
else
binding = Base.Docs.Binding(Main, ex)
d = Base.Docs.doc(binding)
if d isa Markdown.MD
send(JSONRPC.Response(r.id, string(d)), server)
return
end
end
end
send(JSONRPC.Response(r.id, "No documentation found."), server)
end