sircfenner
sircfenner
This PR adds a vertical splitter control in between the Stories list and the Preview pane. Clicking and dragging this bar lets you resize the two panels, for example to...
When expanding and then shrinking the main widget horizontally, the contents of the list frame expand horizontally but do not shrink, causing the canvas size of the scrolling frame containing...
- [ ] Provide a short readme in addition to the docs link - [ ] Revisit installation instructions in docs - [ ] Revisit usage page (e.g. correct vendor/packages...
```Lua local chunk = "a:b c:d" local data = {} for key, value in string.gmatch(chunk, "(%S+):(%S+)") do data[key] = value end ``` This incorrectly reports a manual table clone on...
For example, applying `remove_assertions` with the default parameter for the rule, the following input: ```lua local head = assert(character:FindFirstChild("Head"), "head is missing!") ``` becomes: ```lua local head = character:FindFirstChild("Head") and...
Attempting to create more than 20 keypoints errors
See https://github.com/seaofvoices/darklua/issues/202 for motivation. An implementation I have done in the past converts the following: ```Lua for x, y, z in input do print(x, y, z) end ``` into: ```Lua...
As with other rules like `remove_interpolated_string` and `remove_compound_assignment`, this would be useful for translating Luau into Lua 5.1 source code. I implementated this myself a while ago in a different...