Open lilgallon opened 6 years ago
Escape characters are an issue. I still haven't figured out a clean way to do this.
The enhancement is to increase support for escape sequences. Even things like: d'une
should work in html sequences.
I'm hitting this issue with 'API key has\'t changed'
.
Couldn't it take the surrounding quotes into account when suggesting the change?
@OmgImAlexis,
Let me see if I understand you.
'API key has\'t changed'
currently gets corrected to
'API key hasn't changed'
when it should be
'API key hasn\'t changed'
.
Is this what you mean?
@Jason3S yes either that or it should suggest using backticks and keeping the apostrophe.
I'm working with french words, so I need to write some sentences like "La porte d'une maison est ouverte". The convention in my code says that I need to put ' as string separator instead of " (I'm using python).
In my code, the sentence becomes 'La porte d\'une maison'. The french dictionnary does not recognize "d\'une", which is legitimate, but when I add "d\\'une" in the dictionnary, the spell checker keep saying me that the word is unknown.
Here are my cSpell settings :
Thanks for your work, awesome plugin ;)