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.

VSCode ワークスペースのトップフォルダ名の改善方法

Last updated at Posted at 2023-11-11

ワークスペース(エクスプローラー)に複数フォルダを登録した場合の名称変更方法

似た名前のフォルダがあり、見た目や内容で区別がつきにくいため、これらのフォルダの名称を変更したい。

ワークスペースには .code-workspace という設定ファイルがあります。このファイル内でフォルダーの表示名を変更できますが、これはあくまでVSCode上での表示名であり、実際のファイルシステムには影響を与えません。ワークスペースファイルを開き、folders プロパティの下にある各フォルダーの name プロパティを変更してみてください。

hoge.code-workspqce
"folders": [
   {
      "path": "path/to/folder",
      "name": "新しい名前"
   },
   // 他のフォルダー...
]

VSCodeを再起動すれば、git関連にも反映されます。

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?