Gaurd guioptions= with a nvim init.vim check #444
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It appears newer versions of NeoVim have modified guioptions to be immutable causing an error when it's set. This PR adds a guard to the template to omit that line when the target is
nvimError messages
Clean fedora linux 42 box.
At startup in the console or when using the VSCode neovim extension I get the following error:
Console
VSCode
Offending line
vim-bootstrap/generate/vim_template/vimrc
Line 168 in 7d79690
Research
There's a couple related issues in neovim's repo, neovim/neovim#32396 seems to be the primary and a comment there, neovim/neovim#32396 (comment), links to a PR neovim/neovim#28400 (comment) which changed
guioptionsfrom hidden to immutable meaning that it can be read/seen, but not set.TL;DR:
Seems
guioptionsisn't supported by neovim, but is still present. Previously it could be set, but was ignored, now it can not.Options
{{if ne .Editor "nvim"}}set guioptions=egmrti{{end}}(this PR)if !has('nvim')for runtime detection