On Mon, Nov 23, 2009 at 1:37 AM, jlist9 <[email protected]> wrote:
>
> Hi,
>
> Is it possible to customize the tab and line number background color?
> The bright green/blue colors look strong to my eyes and are quite a bit
> distracting. I'd rather it be a shade of gray. I looked in the preferences
> dialog box but didn't find a way to set the colors.
>
> Also, the "Shell" window is useful. Although I'd personally call it Python
> command line or Python Interpreter, because shell usually means a Unix
> shell. My question here is, is it possible to change the font? Basically
> if you open a Python command line in a Unix shell or a DOS window,
> this window usually uses a font of a fixed width, such as courier or courier
> new. The good thing about using these fonts in the "Shell" window is that
> it looks similar to running Python interpreter in command line mode, and
> it's also easy to align output in a table.
>
> Thanks,
> Jack
>
For tab color, I've update the svn code, you can check it out. And the
most things about configure ulipad in doc/en/config.txt[.htm], you can
see the doc to see thow to config.
1. for tab color
[default]
editor_tab_color = <color>
Here color is just like #rrggbb or #rgb or "red", "white", etc.
2. for default caret line color and others, you can also see the
config doc in "default_style". You can also change the default_theme
in Preference->General->default color theme, then after set the
default theme, you can change some options of them just according the
config doc, here is an example:
[default_style]
STC_STYLE_CARET_FORE = u"fore:#FFFF00"
STC_STYLE_CARETLINE_BACK = u"back:#cccccc"
STC_STYLE_SELECTION_BACK = u"back:red"
STC_STYLE_CARET_FORE is the caret color, STC_STYLE_CARETLINE_BACK is
the caret line color, and STC_STYLE_SELECTION_BACK is selection text
color. You don't need change all style of default_style but the ones
you want to change for your need.
3. for shell font, also descripted in option doc, just set:
[default]
editor_font = "fontname"
editor_fontsize = 12
editor_linesize = 10
message_font = "fontname"
message_fontsize = 10
shell_font = "fontname"
shell_fontsize = 10
you only need to set shell_font and shell_fontsize options, that's enough.
--
I like python!
UliPad <<The Python Editor>>: http://code.google.com/p/ulipad/
UliWeb <<simple web framework>>: http://uliwebproject.appspot.com
My Blog: http://hi.baidu.com/limodou