plugin-lua icon indicating copy to clipboard operation
plugin-lua copied to clipboard

Prettier Lua Plugin (WIP)

Results 14 plugin-lua issues
Sort by recently updated
recently updated
newest added

current output ```lua assert( context:ReturnBabel( [[ fetch("asset://garrysmod/data/a.txt") .then((response) => response.text()) .then(a => console.log(a)) .catch(a => console.warn(a)) ]] ):await() ) ``` expected output ```lua assert( context:ReturnBabel([[ fetch("asset://garrysmod/data/a.txt") .then((response) => response.text()) .then(a...

bug

current output ```lua do ent = function(sock) local contents = "ENT = {}; local ENT=ENT; " .. sock:receive( "*a" ) .. "; scripted_ents.Register(ENT, '" .. who:sub(0, -5) .. "')" end...

bug

input ```lua call() -- line comment call() ``` output ```lua call() -- line comment call() ``` expected output ```lua call() -- line comment call() ```

bug