Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invisible pair highlighting #17

Open
alexander-bachmann opened this issue Jan 13, 2021 · 4 comments
Open

Invisible pair highlighting #17

alexander-bachmann opened this issue Jan 13, 2021 · 4 comments

Comments

@alexander-bachmann
Copy link

https://cdn.discordapp.com/attachments/712311177710927914/798984371768000542/unknown.png

Cursor will disappear when landing on a brace/bracket pair then reappear on it's closing pair. In the above picture, the cursor should actually be where the red box is.

@cerofour
Copy link

cerofour commented Jan 29, 2021

I had the same problem, to solve edit colors/miramare.vim by deleting the 'reverse' argument

call s:HL('MatchParen', s:palette.none, s:palette.none, 'reverse')
" Fixed
call s:HL('MatchParen', s:palette.none, s:palette.none)

@mateuscelio
Copy link

@alexander-bachmann did you add "set termguicolors" in your vimrc file? For me, this solved the problem.

@decent-man
Copy link

I had the same problem, to solve edit colors/miramare.vim by deleting the 'reverse' argument

call s:HL('MatchParen', s:palette.none, s:palette.none, 'reverse')
" Fixed
call s:HL('MatchParen', s:palette.none, s:palette.none)

This will skip the highlighting for the matching parenthesis entirely.
If you do want some fancy highlighting then edit the color values.

call s:HL('MatchParen', s:palette.bg0, s:palette.cyan, 'bold,italic,underline,reverse')

Predefined Colors in the palette are:- red,blue,yellow,purple,cyan,green,grey,bg0,etc.

@norogoth
Copy link

norogoth commented Mar 18, 2022

@decent-man The lack of thumbs up on this post is a travesty. Can you make a PR for this change? @dlb04 check this out.

Devs, please incorporate this or a version of it in the latest version. It fixes the only flaw I found with this excellent theme.

Repository owner deleted a comment from HMR25 Mar 2, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants