David Briscoe
David Briscoe
Seems like the current rule is: if a function call joined to a single line would be over the column limit, then break it on each argument (comma). ## Proposal...
Feels like this issue is "humans know better how to make this understandable" running up against purely syntactic formatting. (Similarly, I'd prefer hidden options to adding `--stylua: ignore` annotations.) Regardless,...
I don't know if you can put the github actions configuration anywhere except `.github/` in the root of the repo. In theory, we could put the tests inside there. Unusual...
I had the same problem. I worked around it by building my own list of contacts in game code: ```lua if self.collider:enter(wall) then local collision_data = self.collider:getEnterCollisionData(wall) -- Using .contact...
FYI, I had similar errors on LunarConsole 1.8.1 and Unity 2019.4.7 and I did **not** have lunar_unity_native_interface.m in my Xcode project. ``` Undefined symbols for architecture arm64: "___lunar_console_destroy", referenced from:...
Looks like #28 is a step towards doing this.
luabinaries has a folder for Static windows libraries: https://sourceforge.net/projects/luabinaries/files/5.3.4/Windows%20Libraries/Static/ Those zip files contain lua53.lib. As described on #22, edit your config to point to that lib file. You need the...
@AntumDeluge Nice work on the multiple versions! The mdbook example includes a version selector inside the doc page, so I guess ldoc would need to be updated to support built-in...
Would be nice to have a single option for "I just want ftplugins". I already have DetectIndent, editorconfig, and sensible.vim and they're configured how I want, so I don't want...
Thinking about this a bit more, it might be better to accept a list to allow OR arguments. Or a list of lists to accept OR and AND arguments. But...