vscode-spellright
vscode-spellright copied to clipboard
VS Code Save: Getting code actions from ''Spell Right''
Any way to fix this issue. this popup shows up on every save, for a LONG time (many minutes) and save is hung until done. I've seen similar issues here: https://github.com/microsoft/vscode-go/issues/3179 but nothing fixes it. thx.
I'm also facing this, and the setting "spellright.recheckOnSave": false
does not seem to help.
Is it possible to disable this via VSCode editor.codeActionsOnSave
setting?
For example, if I want to prevent ESLint from running on save, I can set:
"editor.codeActionsOnSave": {
"source.fixAll": true,
"source.organizeImports": true,
"source.fixAll.eslint": false,
},
Is it possible to add another entry like source.spellRight
or something to disable it?