damanis
damanis
The issue happens both for '--noplugin' and '-u NORC' I didn't success with 'Debug from neovim', :messages didn't help too.
> Did you mean "no" here Sure
I just try to open ~/.bashrc. 50% it as Ubuntu default. I tried find problem in config files - results unstable. Continue investigate configs. Debug output didn't help?
I found why 'echo' commands you requested are not shown - their output is empty. Probably, some error in the commands.
@hismailbulut Today I compiled source with last your changes (last commit is 0f9133ef) and currently I don't see the invisible cursor problem. I will update you if it returns.
@wez It seems, like VirtualBox problem and I find that what may be wrong. I opened the issue, because the problem exists only in WezTerm.
I made workaround (like neovim works), may be it can help to understand the problem. ``` {key="w", mods="WIN", action=wezterm.action_callback(function(win, pane) local sel = win:get_selection_text_for_pane(pane) wezterm.background_child_process{"bash", "-c", "printf " .. sel...
After GonvimMaximize a window restores properly. In both cases, changing window state by GonvimMaxmize and by window manager, ```xprop``` returns same window property _NET_WM_STATE(ATOM) = _NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_VERT But in GonvimMaxmize...
The function ```func (e *Editor) resizeMainWindow()``` is called before window state is changed, so ```e.window.WindowState() == core.Qt__WindowMaximized``` is ```false``` and geometry updated. Seems, QResizeEvent does not provide enough data and...
@akiyosi In my tests ConnectResizeEvent is coming before WindowStateChange event. ```WindowGeometryBasedOnFontmetrics``` is enabled to define window size by set lines and columns.