Open onomou opened 1 week ago
I opened a file outside my current working directory, then used Ctrl + Shift + P to call Add to Favorites. Only part of the file path was added to .vscode\settings.json.
Ctrl + Shift + P
.vscode\settings.json
Actual output:
"favorites.resources": [ { "filePath": "evit_config.ini", "group": "Default" } ]
Expected output:
"favorites.resources": [ { "filePath": "C:\\Users\\ \\AppData\\Roaming\\pyRevit\\pyRevit_config.ini", "group": "Default" } ]
I edited settings.json to reflect the expected result, and it shows the entry correctly.
settings.json
Using Add to Favorites with other files in the currently opened folder worked for me, so I think this is a parsing issue with individual file paths.
@geforcesong will you look at it?
I opened a file outside my current working directory, then used
Ctrl + Shift + P
to call Add to Favorites. Only part of the file path was added to.vscode\settings.json
.Actual output:
Expected output:
I edited
settings.json
to reflect the expected result, and it shows the entry correctly.Using Add to Favorites with other files in the currently opened folder worked for me, so I think this is a parsing issue with individual file paths.