Replies: 1 comment 1 reply
-
Possibly it's getting inherited somehow. Note that vscode-neovim uses buftype=nofile buffers, maybe there is a detail that needs to be considered. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not sure if this is a bug or just me misunderstanding (Neo)Vim, so I thought I'd ask here before creating an issue…
So I noticed that VSCode NeoVim seemingly randomly started setting
spell
in my editors and I couldn't figure out why. It's turned off by default for me. Turns out I hadsetlocal spell
in myafter/ftplugin
config for markdown files, so every time I opened a markdown file VSCode NeoVim would activatespell
for me. Mystery solved.The thing is: I used
setlocal
because I was under the impression that this would ensure that only the buffer where the markdown file was open would getspell
activated, instead of all buffers. Is this not the case?? If it is the case, then I think it seems like VSCode NeoVim does not honor thesetlocal
properly.Any input on this would be appreciated!
Cheers!
Beta Was this translation helpful? Give feedback.
All reactions