Page 1 of 1

scite4autohotkey color

Posted: 10 Sep 2020, 08:08
by trust_me
I just tried out the scite editor , is there a way to remove the " active lign " highlight ? It is a pale yellow with standard installation .

Thanks in advance :)

Re: scite4autohotkey color

Posted: 10 Sep 2020, 09:19
by awel20
I think this is the line that changes that setting:
caret.line.back.alpha=0

You can add the above line to the style file for a particular theme, which will change the setting only for that theme. Or you can add that line to your user properties which will change the setting for all themes.

For example, with the classic theme:
Options -> Open Classic.style.properties

Or the user properties:
Options -> Open User properties
caret.line.back
caret.line.back.alpha

Sets the background colour and translucency used for line containing the caret. Translucency ranges from 0 for completely transparent to 255 for opaque with 256 being opaque and not using translucent drawing code which may be slower.

- https://www.scintilla.org/SciTEDoc.html

Re: scite4autohotkey color

Posted: 10 Sep 2020, 10:17
by trust_me
Thank you awel20 perfect solution :)