菜单中选择 文件 → 首选项 → 设置 随便选择一处在settings.json中编辑
打开settings.json文件后,在最后面加上
,
"workbench.colorCustomizations": {
//设置用户选中代码段的颜色
"editor.selectionBackground": "#2f00ff",
//搜索匹配的背景色
"editor.findMatchBackground": "#ff0000",
"editor.findMatchHighlightBackground": "#ff00ff",
"editor.findRangeHighlightBackground": "#ff9900"
},
我们就设置完结果高亮了。