Closed objczl closed 3 years ago
That's an issue with the syntax coloring of the sh
filetype, independent of the color scheme (try :colo default
and the issue will still be there).
While the left double quote is assigned (correctly) syntax group shQuote
, the right double quote has syntax group shSpecial
. The former is highlighted as the Operator
highlight group; the latter is highlighted as the Special
highlight group.
So, a workaround consists in overriding the definition of one of those groups. E.g., putting this in your vimrc
should fix it:
hi! link shSpecial shQuote
@lifepillar Thanks