I'm pretty annoyed that the colour of the cursor that indicates where you are in the terminal is black against a dark grey background when you use a dark theme. It's just hard to see where in the text you are, see example below:
I've tried to change this without succes. The theme I'm using is the Chaos theme, which is a standard theme that I think comes with every RStudio distribution. In the file linked above, I've tried changing the following (L191-L194) from this:
.terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
background-color: #CCC;
color: #1e1e1e;
}
to this:
.terminal.xterm-cursor-style-block.focus:not(.xterm-cursor-blink-on) .terminal-cursor {
background-color: #CCC;
color: #FCE94F;
}
After saving the edited file as chaos2.rsthemes and using the Tools > Global options > Appearance > Add... in RStudio to add the new document as a theme. I saw no change in the cursor colour after rebooting RStudio, whereas I had hoped it became yellow.
A related question talks about the mouse cursor instead of the text cursor I want to edit.
Does anyone know what the correct way to edit the theme is so I can have a light terminal cursor on a dark grey background? I don't want to change to a totally different theme, I just want this one small change.
