在搞不定Pycharm界面字体配置之前我的审美让我选择拒绝...
vscode的语法高亮和默认字体都太舒服了,Pycharm暂时只会改编辑器的字体,没用。
vscode都2.0.0了,网上很多0.1.0的配置不起作用了,现在应该如下配置:
image.png{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"taskName": "build",
"command": "python",
"type": "shell",
"args": ["${file}"]
}
]
}
然后Crtl+Shift+B
,出现build
,回车运行当前程序。
还是有点麻烦,好在不是出现cmd来显示结果,比vs2017好。
可惜作为编辑器没法看内建函数等的源码。
网友评论