japhib / pico8-ls

PICO-8 Language Server
MIT License
64 stars 8 forks source link

Documentation for custom functions #60

Open theRenard opened 6 days ago

theRenard commented 6 days ago

Is it possible to add support for custom function documentation like in LDoc ?

--- Summary ends with a period.
-- Some description, can be over several lines.
-- @param p1 first parameter
-- @param p2 second parameter
-- @return a string value
-- @see second_fun
function mod1.first_fun(p1,p2)
end