0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ミニマップのスライダーを見やすくする

Posted at

VSCodeの端に表示されるコード全体を縮小表示したみたいなやつ(ミニマップと言うらしい)のエディタで表示されている範囲を示す矩形(スライダーと言うらしい)が見にくかったので、その設定を変えた時のメモです。

スライダーの背景色を変える

配色テーマによっては周囲の色に馴染んでしまって見づらいため変えます。

settings.json
"workbench.colorCustomizations": {
    "minimapSlider.activeBackground": "#06034dc0",
    "minimapSlider.background": "#06034dc0",
    "minimapSlider.hoverBackground": "#06034dc0"
}

スライダーを常に表示

デフォルトではホバー時に表示されますが、スライダーを介してスクロールする場合はこちらのほう良いかと思います。

settings.json
"editor.minimap.showSlider": "always"
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?