We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to use multiple languages as a language source?
The text was updated successfully, but these errors were encountered:
yes. Check :help spelllang. e.g in lua you can set vim.opt.spelllang = {'en', 'it'}.
:help spelllang
vim.opt.spelllang = {'en', 'it'}
Sorry, something went wrong.
I tried this with vim.opt.spelllang = {'en_gb', 'de'}, both are installed and it did not work. Any help on how to troubleshoot?
vim.opt.spelllang = {'en_gb', 'de'}
What works for me is vim.opt.spelllang = 'en_us,fr'.
vim.opt.spelllang = 'en_us,fr'
No branches or pull requests
Is it possible to use multiple languages as a language source?
The text was updated successfully, but these errors were encountered: