Max “Goldstein” Siling
Max “Goldstein” Siling
Setting explicit text color would work, but may be kinda ugly. If we know that we're on iTerm, it's quite simple to reset these settings, but this would require terminal...
I think the general issue is that STDIN can’t be trusted. It can be fabricated or user can be fooled with hiding the prompt one way or another. Script controlling...
(Color of volume bar is muted because volume is muted)  Config: ```ron ( max_notifications: 10, timeout: 20000, poll_interval: 16, shortcuts: ( notification_interact: 2, notification_close: 1, notification_closeall: 3, ), history_length:...
@Haxeil It doesn’t really matter, you just need to run it when you want to change volume/brightness/send command to media player. In my case it’s in `~/.local/bin` and mapped to...
Actually, two blocks with different `AppName` would not be deduplicated with tags, so I ended up matching on `Body` instead, which is even more of a hack (and for some...
I’m not sure, but that’s what the documentation says: > When the notification has some body text (not guaranteed).
I thought about `%`-syntax in `Color` strings. > I assume you're creating the notifications yourself, so the right way of handling this is probably to support supplying some extra data...
Other good way to test is using Wikipedia dump (you can get one at https://ftp.acc.umu.se/mirror/wikimedia.org/dumps/enwiki/20201001/), which is well-formed XML (so can be syntax highlighted), but weights >5G.
`:call neomake#virtualtext#show()` works nice, thanks! It would be cool if it was avialable as built-in option. Maybe I'll send a PR.
I added this to my vimrc: ```vim autocmd User NeomakeJobFinished silent call neomake#virtualtext#hide() | call neomake#virtualtext#show() ``` but it doesn't show info messages. One big usecase for virtualtext on all...