diniamo
diniamo
I have this issue on Discord as well.
https://www.reddit.com/r/neovim/comments/3v06lo/making_the_background_transparent/ or if the above doesn't work: https://forum.archlabslinux.com/t/make-vim-background-transparent-so-you-can-see-terminal/5023 imo it's not the plugins job to manage the background color
I know what it does, I looked at the code. If it's better managed by the plugin, then why don't most themes do it?
Might give this one a try myself, but probably gonna do another, simpler issue first to just explore the code
Oh huh, I'll try that. Well I guess if you already planned to do it someday, then we could keep this issue open, if there isnt another one.
As I said, I've tried every way I know. ```c++ QObject::connect(d_hotkey, SIGNAL(activated()), this, SLOT(printCaught())); QObject::connect(d_hotkey, SIGNAL(activated(QPrivateSignal)), this, SLOT(printCaught(QPrivateSignal))); QObject::connect(d_hotkey, &QHotkey::activated, this, [&](){ ... }); QObject::connect(d_hotkey &QHotkey::activated, this, &TrayHandler::printCaught); ``` TrayHandler...
Hm.. I get the warning on the lambda one so that's interesting. I also thought it would be good since that's in the example in the readme. Same with the...
Also, just to clarify, `Qt::Key_Print` is print screen right?
> That's impossible. 
Could it be with the way I add the dependency? Because it feels kinda wrong. That's the only thing I can think of at this point, since the HotkeyTest example...