paint-brush
How to Fix the VS Code Explorer for Content Projectsby@chantastic

How to Fix the VS Code Explorer for Content Projects

by chantasticJuly 26th, 2023
Read on Terminal Reader
Read this story w/o Javascript
tldt arrow

Too Long; Didn't Read

The VS Code explorer displays folders at the top of a directory. This is a common hierarchy that I like in most cases. But I hate it for content sites. I prefer alphabetical order. I want to see my files and folders all mixed up together. To change the default behavior, open Settings and find the option for `Explorer: Sort Order'
featured image - How to Fix the VS Code Explorer for Content Projects
chantastic HackerNoon profile picture

The VS Code explorer displays folders at the top of a directory. This is a common hierarchy that I like in most cases.


But I hate it for content.


For content sites — like chan.dev — I prefer alphabetical order. I want to see my files and folders all mixed up together.

Screenshot of the Visual Studio Code Explorer, showing several markdown posts. With explorer.sortOrder: mixed, a directory of the same name as a post appears next to a post with the same name.

How to Change the Setting

To change the default behavior, open Settings, and find the option for Explorer: Sort Order
Screenshot of VS Code Settings, for the option Explorer: Sort Order. Selected is the mixed option.

With this option enabled, files and folders are interwoven in the explorer.

Why I Prefer Mixed-Sort Order

On chan.dev, I have lots of markdown files. Some of them have images. And I want to keep those images in a folder nearby. I ain’t tryna faff with Cloudinary or hunt down shared /assets/images folder. I want them right next to my post.


This makes it easy to keep my place on the file system.

Take It Further With Workspaces

As mentioned, I prefer the default sort order for most projects. So, I keep this setting stored in my chan.dev workspace. And only this project is impacted by the setting.

{
"explorer.sortOrder": "mixed"
}