本文主要是介绍Cannot read property ‘length‘ of null while opening vscode terminal,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
同一问题地址:Cannot read property ‘length’ of null while opening vscode terminal
问题描述
One day, 我在ubuntu 18.04下用vscode打开一个项目,并想和往常一样在vscode使用终端,发现报错Cannot read property 'length' of null
。
解决
打开setting.json,发现terminal.integrated.localEchoStyle后面的赋值为null,将它改为 “#ffffff”,保存即可解决问题。
{"terminal.integrated.localEchoStyle": "#ffffff",
}
tips:
打开setting.json方法点击下方地址:
新版vscode如何打开settings.json
这篇关于Cannot read property ‘length‘ of null while opening vscode terminal的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!