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

Added curhl to change the cursorline highlight for signs #1048

Closed
wants to merge 2 commits into from

Conversation

c0r73x
Copy link

@c0r73x c0r73x commented Jun 18, 2024

Adds curhl to signs, fixes #563

@lewis6991
Copy link
Owner

lewis6991 commented Jun 18, 2024

Needs to be added and documented in the config and added properly to the type annotations.

Also need to define and document default highlight groups for this.

@c0r73x
Copy link
Author

c0r73x commented Jun 19, 2024

I added it to the default config, though i think it's kinda pointless since it will always default to the sign highlight unless specified. 🤷‍♂️

@lewis6991
Copy link
Owner

Why does that make it pointless?

@c0r73x
Copy link
Author

c0r73x commented Jun 19, 2024

Since if it's not specified it will work as it did before, and If it's specified it will change the cursor highlight to the specified group. So the default config could just as well exclude the curhl value and nothing would change.

@lewis6991
Copy link
Owner

I don't think you understand.

change = {
hl = 'GitSignsChange',
text = '┃',
numhl = 'GitSignsChangeNr',
linehl = 'GitSignsChangeLn',
curhl = 'GitSignsChange',
Copy link
Owner

@lewis6991 lewis6991 Jun 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs its own unique highlight group which is cleared by default. Highlight groups are managed in highlights.lua.

Then you need to run make to update the documentation.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why?

Everything is handled by neovim internally in nvim_buf_set_extmark, that's why i think it's pointless to add a default for it, if cursorline_hl_group is not specified it will use the default highlight specified for the extmark (like it was before this change). If it's specified it will use that group.

                  • cursorline_hl_group: name of the highlight group used to
                    highlight the sign column text when the cursor is on the
                    same line as the mark and 'cursorline' is enabled.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

extmarks are an implementation choice. They have nothing to do with the API gitsigns exposes. All highlights that Gitsigns uses are defined and documented. Eventually I'm going to remove these from the configuration in setup().

Any I wasted enough time on this so closing.

@lewis6991 lewis6991 closed this Jun 19, 2024
This pull request was closed.
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

Successfully merging this pull request may close these issues.

Incorporate cursorline highlighting in sign column
2 participants