AlexVallat
AlexVallat
Best approach I have found so far is to do a minimal abstract logger: ```c# public abstract class MockLogger : ILogger { void ILogger.Log(LogLevel logLevel, EventId eventId, TState state, Exception...
When you say closed as "completed" - is this actually a capability of notepad3 now? I couldn't find documentation on it. Or is it actually rejected is a feature request?
Fair enough. I'd quite like to be able to call [TidyJson](https://github.com/MasterDevs/TidyJson) to reformat json (without needing to save it first), but I can absolutely understand it not being a priority.
Bisection indicates this occurred between 2.0.27 and 2.0.28
To match on a whole url like that it needs to be regex syntax, so start with an `@`, and add a `\`before any `.` (or other regex character like...
Basically, `!*.domain.com` works, and `*.domain.com` doesn't. The `!` prefix means use * patterns ([ref](https://github.com/kintesh/containerise#glob)), so without it just `*.domain.com` would match a theoretical domain that was literally `https://*.domain.com`, which I'm...
That seems to work, thanks. I think a similar change will need to be made to [rebuild_userChrome.uc.js](https://github.com/xiaoxiaoflood/firefox-scripts/blob/master/chrome/rebuild_userChrome.uc.js#L269) too?
I couldn't find your changed rebuild_userChrome.uc.js on any other issue, but I've made the change myself as [rebuild_userChrome.uc.js](https://github.com/AlexVallat/firefox-scripts/blob/c24da117c8b5c3f03747e141b154d519e07ca954/chrome/rebuild_userChrome.uc.js#L269) if anyone else needs it.