Tyler Miller
Tyler Miller
## Updates ### Changes - Calendar interval must be a list (when provided). I did this because allowing an attrset as well ruined the documentation. - Create `launchd/types.nix` file -...
Oh, it seems that `nvim -u NONE -i NONE -n +'=require"osv".launch({port = 8086})'` isn't working either. This might just be the same issue that I was experiencing last time in...
> [The mac filesystem is case insensitive](https://discussions.apple.com/thread/251191099) so a rename of `abc.txt` to `Abc.txt` is nonsensical (to the OS) as they are the same. File name comparisons are done without...
I think I may have almost reached a solution. On an unrelated note, I also came across 2 or 3 small bugs in `Path:rename()` as well (that have to do...
Invoking a new host/process for each test file would be nice, and/or adding a new variant of `describe()` which achieves this (so that a single file could be split across...
Using the default options, it also seems that the behavior of these 2 differ: ```lua describe('', function() function Global() end end) ``` ```lua describe('', function() function _G.Global() end end) ```
> terminal windows in a session are not properly restored It'd be cool if there were the option (e.g. maybe something in `'sessionoptions'`) to have scrollback restored (or an api...
What if there's release notes available on GitHub, but no `CHANGELOG` file in the repo/package (i.e. the release notes are not apart of the repo's contents/git objects)? Will renovate still...
I would like to see this implemented as well. For example, maybe a new quantifier/symbol similar to `*` and `+`, but for matching recursively instead of sequentially. This doesn't seem...
> > I think all mentioned cases with catastrophic recursion actually have an issue in a grammars' composition and instead of attempts to handle unlimited recursions by queries it's better...