How to change error colors for Komodo IDE color scheme

I am adjusting the color scheme and almost everything is working correctly. With the exception of the command output tab, errors in red italic font, color settings for which I cannot find anywhere are displayed! In the font and color settings there are tabs “fonts”, “colors”, “general syntax”, “language binding” and “indicators” with drop-down selectors. There is more than one option, which is highlighted in red italics! By default, the font is white on blue. Where can I find color settings for command output errors?

+6
source share
2 answers

Well, no one answers, and I found a hack that helps. It seems that there really is no gui menu option for the color of the error text in the command output, but there is a parameter for it in the .ksf file. I changed the line manually which says

'Errors': {'Error lines': {'fore': 65535, 'hotspot': 1, 'italic': 0}}, 

where "foreground" is the foreground color, "italics" is italic font, what I wanted and it worked. I suppose a "hot spot" means that it is clickable, but I'm not sure / don't care right now.

+6
source

I know this is a little late from the original post, but I stumbled upon this while searching for this problem, and this led me to a hint as to where to look for the GUI.

In Komodo version 9.0+

  • Settings> Color Scheme
  • Select the Language tab
  • Select "Language Errors" (under others)

Item Type Error String Type seems to reflect STDERR

0
source

Source: https://habr.com/ru/post/917262/


All Articles