Dylan Forbes
Dylan Forbes
I bypassed the login code by supplying a cookies file, and I got a different error: ``` [Patreon] 54675251: Downloading JSON metadata WARNING: "url" field is missing or empty -...
Yeah that works, thanks! Except ideally I'd want `` not to just complain that there's no alternate buffer, but to take me to the next available buffer or something. Is...
ok well I guess it's back. nvm! Though really the dependency should be switched to straight ffmpeg if posssible. Not that I know any details.
Alright @alexkay, can you explain why the dependency is on 2.8 instead of regular ffmpeg?
Found the issue. It's a simple regex bug on line 173: `gsub(/\[\(\)\[\]\|\]/, "\\\\&", clean_short)` should be `gsub(/[\(\)\[\]\|]/, "\\\\&", clean_short)`. Basically the regex was escaping the `[]` for no reason, making...
I mean the only difference it makes is that it actually has a decent chance of matching something, since the old regex would only match strings containing `[()[]|]` as a...
Ok this is weird. The bug was introduced in https://github.com/rupa/z/commit/eda8015880106a2aef69c77a52f85b32599d4257, and it was the only change in the commit. @rupa can you give some detail on why this commit fixes...
Ok yeah I'm fully on board with your suggestion. @rupa?
In what situation would you want this
@tpope Have you given a reason why you don't want to implement Coerce as an operator (accepting a motion as argument)? I feel like it would be more your style...