oleg-shilo / Favorites.vscode

VSCode extension for managing Favorites
MIT License
23 stars 6 forks source link

Non-path text not work #42

Closed kamil-novak closed 2 years ago

kamil-novak commented 2 years ago

Hello, I have a problem with non-path items. When I try to set it, item is showing as "path item":

Image 002

I am using this settings: favorites.showFolderFiles": true, "favorites.singleListMode": true,

Is there some solution for this? Thanks. Kamil

oleg-shilo commented 2 years ago

Looking at it

oleg-shilo commented 2 years ago

Fixed. Install v1.5.16 The problem was caused by the need to display the file icon even if the file's existence cannot be checked (e.g. WSL).

Thus a new convention has to be used for separators: |<separator>. What is in fact consistent with <file path>|<file aliase> where the file path is empty and the file alias is ... your separator.

kamil-novak commented 2 years ago

It works fine. Thanks.