@equalsraf
@equalsraf
Hi @manid2 This is best addressed by existing Neovim features. I think what you are describing is already covered by `:mksession`.
Ok let me know when you have a clear picture of how this would work. > I want to see previously opened files every time I start neovim-qt and I...
fc-list does list the fonts, but if GuiFont is failing either there is a problem with the font itself (usually different size for different variants), or some issue with the...
The lua code would be ```lua vim.cmd('GuiFont ...') ``` If you are running this from init.lua instead of ginit.vim, then you will need something like an autocommand for `UIEnter`.
> I got it, `nvim_gui_shim.vim` is required. and somehow I haven't got one. Usually you don't need to set it up manually, check its path in https://github.com/equalsraf/neovim-qt#why-are-the-gui-commands-missing
That sounds like it is looking for it in the wrong place. If you are building from source it would be in [src/gui/runtime](https://github.com/equalsraf/neovim-qt/tree/master/src/gui/runtime). If you installed from some package, it...
I assume it is this font https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Noto/Sans-Mono is that correct?
Instead of trying to capture all details about what state needs to be saved, why not defer to the neovim configuration to handle the details. After all neovim has mechanisms...
An autocmd would work for *saveStateStateRequest*. But not for *commitDataRequest* because it may need to return data (cancelation). But maybe it is best to skip implementing commitDataRequest for starters. For...
So if I am getting this correctly, the feature request is to have a way to prevent window geometry from being saved at all? Or (perhaps AND here) to have...