问题
I am using ATOM for all my scripting. There is a package named "Script" where you can run your script from within ATOM by pressing Shift+Ctrl+Space. The command opens a console box at the bottom and shows you the script output. Does anyone know how to change the fontsize
回答1:
You can edit your stylesheet:
Edit -> Preferences -> Themes
And in your stylesheet write:
.script-view .line {
font-size: 14px;
}
Then save it and reboot Atom
回答2:
Adding .atom-runner pre { font-size: 1.2em; font-weight: bold; } into atom-runner.less may make it better
来源:https://stackoverflow.com/questions/31849774/how-to-change-console-font-size-in-console-in-atom-abbrev1-0-7