Making an extension that has virtual filesystem (fake directories and files) in vscode. I've managed to make it and it is working fine, but need to customize a few things and couldn't find any documentation on it.
1) For a reason I cannot specify I need to have forward slashes in directory names ('/'), but when given such a name, vscode truncates it to only last part after last fslash. Is there any way I can make this work and display fslashes in names?
2) By looking at multiple code formatting extensions, I am assuming there is a way to add additional symbols and small text to the files and directories in FileSystemProvider. Like the tslint does for ex. when there are issues in file (filename changes color, amount of issues is displayed as additional right aligned text etc.). Is there any documentation on that? How can you do that in an extension?
3) How to add custom icon to front of directories/files?