我有时会使用Enthought Canopy来编写python,我喜欢更改交互式解释器背景的选项,但是没有更改编辑器背景颜色的选项。
如果可能,我想将颜色更改为黑色(ish)。我想你可以在preferences.ini文件中设置它,但我不知道关键字,也找不到任何关于canopy接受的参数的文档。我认为设置将在一个名为preferences.ini的文件中,但我不确定,无论如何。
Preferences.ini - Windows C:\用户\\应用程序数据\漫游\ Enthought \冠层\ preferences.ini
Preferences.ini - Mac 〜/ .canopy / preferences.ini
以下是preferences.ini文件的示例:
[sessions]
startup_mode = show_last_window
[python_frontend]
theme = linux
prompt_on_exit = True
[code_editor]
right_margin_enabled = True
right_margin_column = 80
smart_parenthesis_enabled = False
tab_completion_enabled = True
[accounts]
first_name = Brave
last_name = SirRobin
authenticated = True
[main]
font = 9 point Inconsolata Light
有没有人这样做过,或者有没有人有任何建议?
答案 0 :(得分:0)
ConfigParser是为了
而制作的它会像您期望的那样读取配置文件
例如
import configparser
config = configparser.ConfigParser()
config.read('preferences.ini')
['preferences.ini']
a=config.get('sessions','startup_mode')
print (a) # -> "show_last_window" show_last_window
b=config.get('python_frontend','theme')
print (b) # -> "linux" linux
答案 1 :(得分:0)
我不知道这么多,所以根据编辑的意思,这可能毫无用处,但我知道你至少可以改变内核"窗口通过编辑>偏好> python选项卡,然后选择深色背景。
我喜欢像这样使用它,即使我在编辑器屏幕上不能让它变暗。