I have created an extension for vscode that includes a virtual filesystem with fake directories and files. While the extension is functioning properly, I am facing some challenges in customizing certain aspects due to lack of documentation.
1) I need to use forward slashes ('/') in directory names for a specific reason, but vscode automatically truncates it to only the last part after the last forward slash. Is there a way to display forward slashes in directory names as intended?
2) I have noticed that various code formatting extensions are able to add additional symbols and small text to files and directories in FileSystemProvider. For example, tslint changes the color of a filename when there are issues in the file and displays the number of issues as right-aligned text. Is there any documentation on how to achieve this in an extension? How can I implement similar features?
3) Is there a way to add a custom icon in front of directories and files within the extension?