Hi @bschaaf,
Yes, I have rebooted a couple of times unsuccessfully. I believe I was able to nail down the issue. In the Project.sublime-project
, I normally only add a few files and folders out of all possible files/folders in the project.
As an example, consider the content of the Project.sublime-project
file as the following:
{
"folders":
[
{
"path": "../", // The "Project.sublime-project" file is in the "Project" folder, inside the "Project X" folder.
"name": "Project X",
"file_include_patterns":
[
"Code/*.*",
],
"folder_include_patterns":
[
"Code",
],
},
],
}
This code allows me to show in the sidebar all files in the Code
folder. Files that are added/removed from the folder are automatically refreshed. The only issue I have is that it does not add files in a subfolder inside Code
to the sidebar. To do this, I change "Code",
to "//Code/",
. This allows me to include all files in subfolders, but the files are not automatically refreshed. To be clear, the updated code is:
{
"folders":
[
{
"path": "../", // The "Project.sublime-project" file is in the "Project" folder, inside the "Project X" folder.
"name": "Project X",
"file_include_patterns":
[
"Code/*.*",
],
"folder_include_patterns":
[
"//Code/",
],
},
],
}
Is this a bug? Am I doing something wrong?