Richard Lewis

Results 72 comments of Richard Lewis
trafficstars

Yeah, I agree with you. The use case of "Mark entire channel as read" is what I was going for here, and that's what it does. So do you think...

Sorry to bring bad news but as far as I know, there's currently no way to load custom fonts at all from within a shadow DOM. If you want to...

You can dynamically inject your CSS into the `` tag as I suggested. Something like this should work: ``` componentDidLoad() { // Add custom font to page DOM since font-face...

Having a redirect like that would allow bots to find the new login url instantly, and try to brute force the username and password. I'm using the plugin specifically to...

Yeah, I totally agree that there are valid usecases for this. And also that it's not at all a fool proof security measure. Just security through obscurity. So for the...

I think the best solution is to just use CSS. Make the container a flexbox and then set the CSS `order` property for the controls: ``` .wk-container { display: flex;...

This is really easy to do with CSS. See my comment on this duplicate issue: https://github.com/bevacqua/woofmark/issues/59

Thanks for reporting! I took a quick look and it seems this is more of a suplemon issue. There are many ways of determining which lexer to use in Pygments...

Thank you! Unfortunately there isn't any way to scroll without moving the cursors. I should probably add that, it should be easy to do. You might still be able to...

Sublime Text has these default key bindings for scrolling. I think suplemon could have a similar `scroll_lines` command. { "keys": ["ctrl+up"], "command": "scroll_lines", "args": {"amount": 1.0 } }, { "keys":...