How to make the cursor more visible when highlighted?

Hi,

It’s hard to see the cursor when parentheses are highlighting. Is there something good way?
I tried without plugins but the situation did not change.

Thanks.

Info

  • Platform: (Windows)
  • Platform version: (10)
  • App Version: (4.6.1)
  • Theme
    • Default Light UI
    • Default Light Syntax
    • GitHub Preview

Hi Nishi-san,

Thank you for the question.
That’d be a personal preference and you can tweak the style in styles.less for your liking:

In this case here’s what to add:

.CodeMirror .CodeMirror-matchingbracket {
    background: transparent !important;
    color: black !important;
    border-bottom: 1px solid red !important;
}

Change colors as you like.

Thank you! :grinning:

1 Like