Editing a project definition file, is there a method to display the contents of a folder twice or more but with distinct include/exclude patterns?
This is a project file I wish to set-up:
{
"folders":
[
	{
		"path": "/home/xxxx/utility",
		"file_include_patterns": ["*.sh"],
		"file_exclude_patterns": ["batch*.sh"],
		"folder_exclude_patterns": ["*"]
	},
	{
		"path": "/home/xxxx/utility",
		"name": "txt",
		"file_include_patterns": ["*.txt"],
		"folder_exclude_patterns": ["*"]
	}
]
}
Saved, the side panel only displays the first definition, the second is omitted.
