You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this plugin provides the ability to check camelCase words by splitting it into a list of known English words, such as
camelCase -> camel case
HTMLInput -> html input – Notice that the I is associated with Input and not HTML
snake_case_words -> snake case words
camel2snake -> camel snake – (the 2 is ignored)
This means any two or more words can be put together to make a camelCase new word which should become a suggestion spelling in the suggestion list.
so, can you add a feature to support camelCase word suggestion for speling correstions?
The text was updated successfully, but these errors were encountered:
Would you give some more examples? I'm trying to understand exactly what you are looking for.
Are you hoping that camelcase will result the in the suggestion of camelCase? Or do you already have a camel case word in your dictionary and want it to be suggested?
Yes, I'm hoping camelcase results will be suggestions for correction without manually adding them in the dictionary. Most of time when I'm coding, I tend to make this kind of spelling mistake that the word is supposed to be in cammel case that can pass your plugin. Such as,
`setloading` in the following code snippet, which should be correct as `setLoading`
```js
const [loading, setloading] = useState();
```
or a common variable `datasource`, which should be fix as `dataSource`.
It would be great if the correct camel case style could be included in the list of fixing suggestions.
I read your document about how the plugin handle the camelCase ( shown as the following pic), I thougth since you can identify misspelled camel case words forwardly, is it possible to add a feature to reversely correct words to the camel case spelling.
Jason3S
transferred this issue from streetsidesoftware/vscode-spell-checker
Oct 24, 2023
this plugin provides the ability to check camelCase words by splitting it into a list of known English words, such as
This means any two or more words can be put together to make a camelCase new word which should become a suggestion spelling in the suggestion list.
so, can you add a feature to support camelCase word suggestion for speling correstions?
The text was updated successfully, but these errors were encountered: