- Atom 1.3.2
- python 2.7.10
- 系统:win7
python code:
#!/usr/bin/python
# -*- coding: utf-8 -*-
print ("测试")
使用ctrl+shift+b
运行代码结果为
settings
已配置字体为 Monospaced
style.less
.tree-view {
font-size: 18px
}
// style the background and foreground colors on the atom-text-editor-element
// itself
atom-text-editor {
font-family:Droid Sans Mono, Droid Sans Fallback;
}
// To style other content in the text editor's shadow DOM, use the ::shadow
// expression
atom-text-editor::shadow .cursor {
}
html, body, .tree-view, .tab-bar .tab,.bottom{
font-family:Droid Sans Mono, Droid Sans Fallback;
}
.terminal {
font-size:12px;
font-family: Droid Sans Mono, Droid Sans Fallback;
}
.markdown-preview {
h1,h2,h3,h4,h5,h6 {
font-family: Droid Sans Mono, Droid Sans Fallback;
}
}