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?

【VScode】右上ミニマップの削除方法

Posted at

VScodeの右上のミニマップ、使わないなと思ったので、削除方法を調べてみました。

初めての記事になりますので、ですます調一致してないかもだし、書き方も統一性がなくて読みづらいかもだけど、とにかく書いてみました。

備忘録として書いてますので、ほぼ自分のために書いてますので、自分にしかわからない表記しているかもしれませんが、ご了承ください汗

1.設定ファイル(settings.json)を開く
・いくつか開き方はあるが、自分が知っている中で最もシンプルな方法を紹介↓
 ① Ctrl + Shift + P を同時押し
  ・すると、画面の上側に、コマンドパレッドが表示される(>から始まるやつ)

image.png

 ②「JOSN」と入力
  ・検索結果に、「基本設定:ユーザ設定を開く(JSON)」と表示されるのでそれをクリック
image.png

2.以下のプログラムを追加

setting.json
"editor.minimap.enabled": false,  //ミニマップの表示

※再表示したいときは、falseをtrueに変更

"editor.minimap.enabled": true,

以上です!
まだまだQiita特有の書き方に慣れないなぁ。これからたくさん書きまくりますので、よろしくお願いします!

0
0
2

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?