fincs / SciTE4AutoHotkey

SciTE distribution for AutoHotkey
https://www.autohotkey.com/scite4ahk/
337 stars 69 forks source link

Make current line marker transparent #14

Closed Lexikos closed 10 years ago

Lexikos commented 10 years ago

Currently the current line marker while debugging is bright blue and opaque, which makes it very difficult to read the text when a dark theme (with light text) is in use. Please make the marker partially transparent.

unreadable

For example, adding this to SciTE_SetCurrentLine() would fix the issue.

DllCall("SendMessage", "ptr", scintillahwnd, "uint", SCI_MARKERSETALPHA, "int", 12, "int", 32)
fincs commented 10 years ago

Thanks for reporting this issue. I will add the following line to SetMarkerColors() in ahk.lua (which is where the debugging markers get configured):

editor.MarkerAlpha[12] = 32