0
0

VSCodeでpythonのdocstringの色を変更する

Posted at

settings.jsonでコメントの色を設定する

settings.jsonを開き、下記の設定を追加することでdocstringの色を変更できる。

  "editor.tokenColorCustomizations": {
    "comments": "#d8bfd8", // インラインのコメントの色
    "textMateRules": [
      {
          "scope": [
              "string.quoted.docstring.multi.python"
          ],
          "settings": {
              "foreground": "#d8bfd8",  // docstringのコメントの色
              "fontStyle": "italic"
          }
      }
  ]
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0