python-syntax icon indicating copy to clipboard operation
python-syntax copied to clipboard

Avoid spellchecking the `f` in an `f-string`

Open m-zat opened this issue 2 years ago • 0 comments

Before this commit the spellchecker highlights everything in the following:

f'correct word' ^^^^^^^^^

f'wierd word' ^^^^^^^

By adding the matchgroup directive, the start and end of the region are not considered when spellchecking. The examples become:

f'correct word'

f'weird word' ^^^^^

m-zat avatar Dec 27 '22 10:12 m-zat