luarocks
luarocks
if you use os only for os.execute, maybe you can replace it with something like this: ```lua local function execute(command) local f = io.popen(command) local l = f:read("*a") f:close() return...
... oh, never mind, **io** is also not available 😢
It seems to me that you underestimate the importance of supporting markdown. Let me give you an example. I'm currently working on a lua documentation tool which parse source files...
@skyjake I am not at liberty to argue with you. Ultimately, this is your project and you decide in what direction to go. Just from my point of view, the...
The problem is that even though these programs use lua, they are not lua interpreters. I.e., busted should somehow be run inside them.
Today I was in a good mood and decided to give this proprietary spyware a chance, but well, if Discord itself is not happy to me, then I have to...
I work on Xubuntu 20.04 with quite large documents and everything works fine. The only lags I've experienced when saving files in sqlite format, so I save in xml.
Here is my solution (keymap): ```json { "keys": ["up"], "command": "chain", "args": { "commands": [ ["move", { "by": "lines", "forward": false }], ["auto_complete_open_link"] ] } }, { "keys": ["down"], "command":...