我拥有VSCode的最新副本。 我想在终端窗口的“问题”面板上更改背景颜色和字体。
我已经使用JSON设置在终端窗口本身上设置了背景,但似乎找不到问题面板的设置。
感谢您的光临。
答案 0 :(得分:0)
查看for (fecha in var2) {
console.log( [var2[fecha].USD] );
var valores = [var2[fecha].USD];
}
// Output a record for each row, not an array:
[1.1969]
[1.1633]
[1.1754]
[1.1616]
[1.1588]
属性以更改“问题”面板。
var fechas = ["2018-05-04", "2018-06-08", "2018-07-19","2018-08-22","2018-08-27"]; // Ordered Dates
var valores = ["1.1969", "1.1754", "1.1588","1.1616","1.1633"]; // Value of the currencies corresponding to the ordered date
但是它将更改所有面板项的背景,例如终端,问题,调试控制台等。
您只能为终端覆盖该设置:
panel
似乎只能单独设置“问题”面板fontFamily,因为我只能看到这两个面板fontFamily属性:
"workbench.colorCustomizations": {
"panel.background": "#0b698f",
"panel.border": "#ff510060"
}
您也许可以弄清楚如何使用Custom CSS and JS extension来做到这一点。例如,参见How to change the font in VS Code's 'Explorer' window?
也许是"terminal.background": "#ff0000",