In Atom, I am currently coding a simple beginner program to get me antiquated with the general lingo of Python. I really love atom and how advanced it is, but I have a small problem. When I execute the code I have written in Atom using the script package, I find the output text is very small and not easily readable. Is there any way to change this?
(As you can see from this screenshot, it is pretty hard to read.)
答案 0 :(得分:3)
Unluckily there is not font setting for the package and what you need to do is go into your editor stylesheet and add this in:
. script-view .line {
font-size: 20px;
}
答案 1 :(得分:2)
如果你得到"错误编译Less stylesheet",只需在脚本视图之前删除空格...正确的版本应该是
.script-view .line {
font-size: 20px;
}