jjvbsag

Results 17 issues of jjvbsag

I have issue debugging threads created with [LuaLanes](https://github.com/LuaLanes/lanes) Simple test script: ```lua local function tcode() for i=1,10 do --

Taking this simple program ```lua local fd=io.open("file") local line=fd:read() fd:close() print(line) ``` Zerobrane is aware of the type of fd. When I entry ´fd:´ I get a popup with available...

Enhancement

I would like to reopen #518 and go a bit more into details. Every other IDE I know, saves all information related to a specific project into a file located...

Enhancement

See https://github.com/diegonehab/luasocket/issues/234 Do you patch luasocket by yourself ? Or do you need to wait for a fix at https://github.com/diegonehab/luasocket

Is it possible to override the startfile in projectsettings `.zbstudio/user.lua` ? How? Also I'd like to request, the 'Command line parameters' are stored based on the startfile, so if I...

I have an issue with ZBS while debugging code which uses huge strings. I often write scripts to analyse big binary data (let's call it data-archaeology). The often start with...

>LUA POWER the LuaJIT distribution for Windows, Linux and OS X can be found at https://luapower.com/ What I did: Add `luapower.lua` to `zbstudio/interpreters` as ```lua dofile 'interpreters/luabase.lua' return MakeLuaInterpreter("power", '...

IUP - Version 3.16 says in the documentation > **Win32 System Driver** When IUP is built with UNICODE enabled, it is possible to specify strings in UTF-8. But the default...

Take the following code (only ldoc comments, no lua code inside): ```lua ------------------------------ -- My example module -- @module example ------------------------------ -- My example class -- @type myclass ------------------------------ --...

Following example ```lua ------------------------------------------------------------ -- get element from object -- @param[type=number] tag index of object 1...n -- @param[type=string] tag name of object to get -- @return obj,idx (obj,number) object and...