sublime-jsdocs icon indicating copy to clipboard operation
sublime-jsdocs copied to clipboard

LUA support ?

Open perghosh opened this issue 13 years ago • 2 comments
trafficstars

Functions in lua are similar to the design of functions in javascript but line commets starts with "--" or block comments "--[[.. ]]". It would be great to have same functionality in LUA

sample luca code

function GetWeekActivites( year, week )
   ... code ...
end

-- function comment
function GetWeekActivites( year, week )
   ... code ...
end


--[[
 - function comment
 -]]
function GetWeekActivites( year, week )
   ... code ...
end

perghosh avatar Aug 21 '12 18:08 perghosh

ok cool... I'll give it a shot when I get some time.

spadgos avatar Aug 22 '12 07:08 spadgos

I currently develop an alternative to DocBlockr called DoxyDoxygen This language is supported. See Compare Doxygen to DocBlockr for details Perhaps you may try it. I am interested by any feedback

20Tauri avatar Sep 18 '15 06:09 20Tauri