Ayplo

Results 14 issues of Ayplo

Attempting to use [*multiple assignment*](https://www.lua.org/manual/5.3/manual.html#3.3.3) on a table with a [`__newindex`](https://www.lua.org/pil/13.4.2.html) metamethod, only the first value will be forwarded to it. **To Reproduce** In moonsharp, the following script ```lua local...

It doesn't look like moonsharp has an equivalent of this

The old build scripts didn't use the given arguments to discover the binary's path, among other fixes. - [ ] Update unit tests to properly test 'Unsupported environments'

Based on #166 If WorkspaceConfiguration#update is called when the workspace is detached, it raises an error. This was causing many events to fail to complete when no folders were open....

There were a few issues causing the test suite to fail. This PR cleans them up so that work can be done on new features - Incorrect Types - `RSTPreviewConfiguration.lineBreaks`:...

### Description I don't understand much of the code for this, but as far as I can tell, this feature is not yet part of the package, and from the...

Issue: feature request Type: text More details: Using the find feature to find an unknown string is very tedious at the moment, as we have to type in the term,...

Enhancement

The guide has the backtraces feature listed as disabled, and it seems the inline documentation fell out of date. Just it case, it'd be a good idea to review similar...

Related to #11 This is my shot at an efficient pretty encoding facility. I'm happy to implement any changes that could improve performance. - A cache is built from the...

Expose the dispatcher table to allow custom encoding of data types. Example use case: ```lua local zero_based_meta = { __index = function(t, k) if type(k) == "number" then return t.raw[k...