@equalsraf

Results 163 comments of @equalsraf

> @equalsraf is it possible to make nvim-qt to use other socket Probably not anymore. Some things changed since this issue was opened. nvim is called by nvim-qt using the...

> And then tell nvim to open that temp file, of course. This last bit is more like load all data into an empty buffer. Otherwise nvim will open the...

On the GUI side this seems simple. Expose a method to set the balloon. For simplification lets ignore balloondelay for now. It seems a balloon show() method places the balloon...

One thing we have not tried on this is a [DPI awareness flag](https://doc.qt.io/qt-5/highdpi.html) for windows. From the docs (I assume the intended value is 0 for DPI Unaware but we...

Could this be related to QInputMethodEvent handling?

Currently we disallow positional arguments when called with --server. If we assume they are allowed with --server and expected to be treated as files to be open, then we need...

Interesting. Did a quick test here in vimscript ```vim function! Wat() while 1 == 1 let x=getchar(1) "if !type(nr) && nr == 0: " continue "HANDLE input endwhile endfunction ```...

I would say there is no rush here, since its been there for so long :) An std::vector should be ok provided we avoid resizing. The only case where performance...

Does this also happen with regular nvim? I can observe the exact same behaviour with nvim in the terminal, by simply calling `:set fileencoding=utf-8` on an empty file. For the...

Hi @xarthurx thanks for reporting this, > It seems when GuiWindowFullScreen(1) is called under the state that the window is maximized, it will not become fullscreen mode. We need to...