vscode-spell-checker
vscode-spell-checker copied to clipboard
Show Fixes and words that beginning with two UPpercase letters
I noticed that when a word has two UPpercase letters at the beginning of the word, then the Show Fixes
resolution replaces from the second uppercase letter. For example, the previous sentence would be updated as follows:
"... has two UUppercase letters..."
If I look closely at the word that is being evaluated, I think it is looking at Ppercase
and suggesting Uppercase
. It then inserts Uppercase
in replacement of Ppercase
resulting in UUppercase
.
If the word doesn't have the right suggestion then it isn't an issue (since there is nothing to replace it with). It turns out the dictionary does very well at guessing the missing first letter and I do a great job of holding down the shift key long enough to get two uppercase letters... :-)
Thank you for reporting this.
@Llibyddap does this still happen? What programming language are you using?
Sorry for the delay... :-(. Python
.
Let me see if I get this right:
You have UPpercase
in your document, the suggestion is Uppercase
and the result is UUppercase
.
yes