w0ng / vim-hybrid

A dark color scheme for Vim
1.48k stars 235 forks source link

MatchParen seems wrong #16

Closed apirogov closed 9 years ago

apirogov commented 10 years ago

I use hybrid dark in the terminal with 256 colors. The MatchParen setting seems a bit wrong to me:

exe "hi! MatchParen" .s:fg_background .s:bg_changebg .s:fmt_none

should be:

exe "hi! MatchParen" .s:fg_foreground .s:bg_changebg .s:fmt_none

Because with fg_background the actual position is darker than the matching position and it looks like the cursor jumped to the other parenthesis. fg_foreground works as expected.

monkoose commented 9 years ago

Confirm.

apirogov commented 9 years ago

Ok, it seems it was a problem with using csapprox... after removing that plugin the cursor looks as it is supposed to!