Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
settings: store window geometry in ~/.config/nvim-qt/window_geometry.…
…conf The single-argument QSettings constructor sets the organization name. nvim-qt is passing "window-geometry" as the organization name, which results in QSettings using `~/.config/window-geometry.conf`. This is undesirable because the file is written to the root of `~/.config` without any indication about which application created or uses the file. Set the organization name to "nvim-qt" when writing window geometry so that `~/.config/nvim-qt/window-geometry.conf` is used instead.
- Loading branch information
31ddd19
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@equalsraf @davvid
I know, it does not relate to this commit, but it relates to the
window-geometry
feature.Might you consider including the patch from 997 in the neovim-qt?
31ddd19
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@damanis I updated your patch so that it only affects the restoration logic and submitted a new PR: #1096
cheers!