python代码颜⾊搭配_PythonIDLE代码配⾊及语法⾼亮
初学Python,想必⼤家拿来练习最多的IDE就是Python⾃带的IDLE了,但是默认的代码配⾊及语法⾼亮主题确实很不适应,所以我们需要做个⼩⼩的美化,⽐如像下⾯这样我做的美化配置:
HOW TO DO?别急,下⾯按我介绍的⼀步⼀步来就可以了,⾸先要到名为config-highlight.cfg的⽂件,这个⽂件位于哪⾥呢?我列了⼀份可以到它的路径清单:
在Linux系列系统下路径为(~表⽰⽤户⽬录):
~/.idlerc/
在Windows XP下路径为:
C:\Documents and Settings\\.idlerc\
python新手代码及作用在Windows 7下路径为:
C:\Users\\.idlerc\
对于Windows可以直接打开开始运⾏或者在地址栏输⼊下⾯的路径确认即可:
%USERPROFILE%\.idlerc\
到这个名叫config-highlight.cfg⽂件后接下来就需要编辑它了,怎么?不到?没关系,我们可以新创建⼀个config-highlight.cfg。当然,说到编辑,命令控们也可以尝试下⾯的命令,在Linux系统下:
# for Linuxvi ~/.idlerc/config-highlight.cfg
在Windows系统下:
notepad %USERPROFILE%\.idlerc\config-highlight.cfg
好了,现在我们应该已经打开config-highlight.cfg这个⽂件并做好编辑的准备了,⽐如说我可以通过修改这个⽂件为下⾯内容来实现两个名为Obsidian和tango的代码⾼亮主题:[Obsidian]
definition-foreground = #678CB1
error-foreground = #FF0000
string-background = #293134
keyword-foreground = #93C763
normal-foreground = #E0E2E4
comment-background = #293134
hit-foreground = #E0E2E4
builtin-background = #293134
stdout-foreground = #678CB1
cursor-foreground = #E0E2E4
break-background = #293134
comment-foreground = #66747B
hilite-background = #2F393C
hilite-foreground = #E0E2E4
hit-background = #000000 console-foreground = #E0E2E4 normal-background = #293134 builtin-for
eground = #E0E2E4 stdout-background = #293134 console-background = #293134 stderr-foreground = #FB0000 keyword-background = #293134 string-foreground = #EC7600 break-foreground = #E0E2E4 error-background = #293134 [tango]
definition-foreground = #fce94f error-foreground = #fa8072 string-background = #2e3436 keyword-foreground = #8cc4ff normal-foreground = #ffffff comment-background = #2e3436 hit-foreground = #ffffff
break-foreground = #000000 builtin-background = #2e3436 stdout-foreground = #eeeeec cursor-foreground = #fce94f
hit-background = #2e3436 comment-foreground = #73d216 hilite-background = #edd400 definition-background = #2e3436 stderr-background = #2e3436 break-background = #2e3436 console-foreground = #87ceeb normal-background = #2e3436 builtin-foreground = #ad7fa8
stderr-foreground = #ff3e40
keyword-background = #2e3436
string-foreground = #e9b96e
hilite-foreground = #2e3436
error-background = #2e3436
tango这个主题就是⽂章⼀开始展⽰的主题效果,怎么样是否很酷?等等,我们修改了config-highlight.cfg这个⽂件并不意味着事情结束了,我们还需要在Python IDLE中选择我们的主题,这时如果已经打开Python IDLE,请保存必要⽂件并重新开启IDLE,开启后依次选择菜单上Options – Configure IDLE…
选择Highlighting选项卡,然后Select选择a Custom Theme,如下图所⽰,选择刚才配置的两个主题之⼀,我这⾥选择tango。
完成配置后点击Apply或者OK,看看效果吧,有童鞋要问字体怎么配置?这个容易,在Highlighting选项卡旁边有个Fonts/Tabs选项卡,可以⽤来配置字体和缩进宽度的:
好了,做完这些⼀个崭新的界⾯就应该呈现了,如果看不到效果请重启Python IDLE。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论