erlang-ls / erlang_ls

The Erlang Language Server
https://erlang-ls.github.io/
Apache License 2.0
626 stars 136 forks source link

Run edoc chunk generation in spawned process #1484

Closed plux closed 8 months ago

plux commented 8 months ago

Doc chunk generation can be very slow, this would cause completion to hang until finished. Instead we now spawn a process and return after 1 second if it generation hasn't completed.

Add check to only generate doc chunks if the chunk file is missing or not up to date.