当前位置:   article > 正文

修改VSCode默认的注释样式_vscode注释斜体

vscode注释斜体

VSCode默认的注释样式是斜体的,下面介绍怎么把斜体设置为正常字体。


1. 首先打开设置,搜索setting.json,然后点击在setting.json中编辑

在这里插入图片描述

2. 在VSCode设置文件setting.json中,添加如下代码:
"editor.tokenColorCustomizations": {
  "textMateRules": [
    {
      "name": "Comment",
      "scope": [
        "comment",
        "comment.block",
        "comment.block.documentation",
        "comment.line",
        "comment.line.double-slash",
        "punctuation.definition.comment",
      ],
      "settings": {
        "fontStyle": "",
        //斜体 "fontStyle": "italic",
        //斜体下划线 "fontStyle": "italic underline",
        //斜体粗体下划线 "fontStyle": "italic bold underline",
      }
    },
  ]
},
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21

保存即可,注释默认斜体就没了。即使更换主题,也不会影响注释的设置。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/379067
推荐阅读
相关标签
  

闽ICP备14008679号