iamcco / coc-spell-checker

A basic spell checker that works well with camelCase code for (Neo)vim
MIT License
265 stars 13 forks source link

Feature: enableCompoundWords should include words that are added to userWords #15

Open esetnik opened 4 years ago

esetnik commented 4 years ago

Example:

I have in my coc-settings.json

"cSpell.userWords": [
    "algolia"
  ],
"cSpell.allowCompoundWords": true,

image

I would expect that since the word algolia is in my userWords and I am using allowCompoundWords: true and since search is a valid english word then there would be no error in this case.