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?

【Zed】プロジェクトパネルのファイルとフォルダの並び順を変更する方法

Posted at

設定方法

settings.jsonに以下を追加します。

{
  "project_panel": {
    "sort_mode": "directories_first"
  }
}

sort_modeには以下の3つの値を指定できます。

"directories_first" (デフォルト)

フォルダを先に表示し、その後にファイルを表示します。

{
  "project_panel": {
    "sort_mode": "directories_first"
  }
}

"files_first"

ファイルを先に表示し、その後にフォルダを表示します。

{
  "project_panel": {
    "sort_mode": "files_first"
  }
}

"mixed"

フォルダとファイルを区別せず、名前順に混在して表示します。

{
  "project_panel": {
    "sort_mode": "mixed"
  }
}

参考

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?