修改Python IDLE代码配色及语法高亮主题.docVIP

  • 2
  • 0
  • 约 5页
  • 2016-11-28 发布于河南
  • 举报

修改Python IDLE代码配色及语法高亮主题.doc

修改Python IDLE代码配色及语法高亮主题

修改Python IDLE代码配色及语法高亮主题 初学Python,想必大家拿来练习最多的IDE就是Python自带的IDLE了,但是默认的代码配色及语法高亮主题确实很不适应,所以我们需要做个小小的美化,比如像下面这样我做的美化配置: HOW TO DO?别急,下面按我介绍的一步一步来就可以了,首先要找到名为config-highlight.cfg的文件,这个文件位于哪里呢?我列了一份可以找到它的路径清单: 在Linux系列系统下路径为(~表示用户目录): ~/.idlerc/ 在Windows XP下路径为: C:\Documents and Settings\用户名\.idlerc\ 在Windows 7下路径为: C:\Users\用户名\.idlerc\ 对于Windows可以直接打开开始运行或者在地址栏输入下面的路径确认即可: %USERPROFILE%\.idlerc\ 找到这个名叫config-highlight.cfg文件后接下来就需要编辑它了,怎么?找不到?没关系,我们可以新创建一个config-highlight.cfg。 当然,说到编辑,命令控们也可以尝试下面的命令,在Linux系统下: # for Linux vi ~/.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 definition-background = #293134 stderr-background = #293134 hit-background = #000000 console-foreground = #E0E2E4 normal-background = #293134 builtin-foreground = #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

文档评论(0)

1亿VIP精品文档

相关文档