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

Visual Studio Code (VSCode)でエクスプローラービューの並び順を変更するには、以下の方法があります:

  1. 設定から変更する:
  • VSCodeの設定を開きます (Ctrl + ,)
  • 検索バーに "explorer.sortOrder" と入力します
  • "Explorer: Sort Order" の設定を見つけ、ドロップダウンメニューから希望の並び順を選択します

選択可能なオプション:

  • default: フォルダを先に表示し、名前順に並べる
  • mixed: ファイルとフォルダを混在させて名前順に並べる
  • filesFirst: ファイルを先に表示し、名前順に並べる
  • type: 拡張子でグループ化し、名前順に並べる
  • modified: 最終更新日順に並べる(降順)
  1. キーボードショートカットを使用:

"Explorer Sort Order" という拡張機能をインストールすると、Ctrl+F10 キーで「最終更新日順」と「名前順」を素早く切り替えられます.

  1. ワークスペース設定ファイルを直接編集:

ワークスペース設定ファイル (.code-workspace) を直接編集して、フォルダの順序を変更することができます.

注意点:

  • 個々のファイルやフォルダをドラッグ&ドロップで自由に並べ替えることはできません.
  • カスタムの並び順(特定のフォルダを最初に表示するなど)を設定することはできませんが、この機能の要望は出されています.

これらの方法を使って、プロジェクトの構造や作業スタイルに合わせてエクスプローラービューの並び順をカスタマイズできます。

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?