Lucas Gangstad
Lucas Gangstad
Add a configuration option to provide functionality that was changed in #207. The extension no longer updates the user about updates to the latest version when they have configured the...
With strict type checking the Parent property of instances seems to indicate that nil is not a valid type. ```lua local instance: Instance = workspace:FindFirstChild("Instance") instance.Parent = nil ``` This...
- [x] I have searched the issue tracker to check if the issue has already been reported. **Description** Attempting to bind Mouse4 and Mouse5 on Linux doesn't seem to work....
TestEZ is listed as a regular dependency in the wally manifest, but should probably be a dev dependency.
In cases where creating types for external Luau libraries, the classes provided are often the Lua "One True Pattern" style classes and these are not necessarily the same as the...
Occasionally, when autocompleting a function, the entire function call is skipped past. This doesn't seem to happen with every function, but seems to happen every time with the following: ```lua...
When writing code I often encounter the situation where I leave a block empty temporarily to come back to it later. This ends up looking something like this. ```lua local...
Right now you can define an non-exported type like `type MyType = string | number`, fail to use it, and selene will ignore this. It would be useful if a...
At the moment the tests are presented in several categories: all, failing, passing, skipped. It would be useful to expand the options for displaying these to allow views such as...
Recently the language server I use has started to better support the [Luau](https://luau-lang.org/) language type, which is a superset of Lua and has the same comment structure. However, when set...