欢迎访问悦橙教程(wld5.com),关注java教程。悦橙教程  java问答|  每日更新
页面导航 : > > > 文章正文

vs code 集成终端无法显示下划线问题的解决办法(vs code's integrated terminal underline is invisible ),underlineinvisible

来源: javaer 分享于  点击 36883 次 点评:287

vs code 集成终端无法显示下划线问题的解决办法(vs code's integrated terminal underline is invisible ),underlineinvisible


在你自己的.vscode目录下的settings.json文件末尾添加如下的内容:
方法1:

"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "Ubuntu mono",

或者如下的内容:
方法2:

"window.zoomLevel": -0.001,

我的配置文件最终是这样子的:

{
    "python.pythonPath": "/home/liuqiang/anaconda3/bin/python",
    // "python.pythonPath": "~/anaconda3/bin/python",
    // "python.pythonPath": "/usr/bin/python3",
    // "python.pythonPath": "/usr/bin/python",
    "workbench.colorTheme": "Andromeda",
    "files.autoSave": "afterDelay",
    "editor.fontSize": 24,
    "python.autoComplete.addBrackets": true,
    "editor.cursorBlinking": "blink",
    "python.linting.flake8Enabled": true,
    "python.linting.flake8Args": ["--disable-msgs=F405"],
    "python.linting.pylintEnabled": false,
    "python.formatting.provider": "yapf",
    "workbench.colorCustomizations": {
        "editor.selectionBackground":"#8A8A8A",
        "editor.selectionHighlightBackground": "#8A8A8A"
    },
    "window.zoomLevel": -0.001,
    //"terminal.integrated.fontSize": 16,
    //"terminal.integrated.fontFamily": "Ubuntu mono",
}

上述两种方法亲测有效!
最终,vs code集成终端的下划线不可见问题得到圆满解决!

参考文献:https://github.com/Microsoft/vscode/issues/46900

相关文章

    暂无相关文章

用户点评