-
Notifications
You must be signed in to change notification settings - Fork 35.4k
Description
It would be nice if it would be possible to sync the list of open files. so that at my home computer in VS Code the same files are opened like in the office. I know I can synchronize settings etc. but unfortunately the open files are not synchronized.
I have currently solved this with a workaround. I have programmed a filelistener script, which searches for changes in the local vs-code application and then creates a list of the opened files.
Procedure:
A script runs an eventlistener on a folder (on my local VSCode application). As soon as the script detects file changes (happens when VS Code is closed), a function is executed which retrieves the list of open files from the VS Code database. Then a simple file list is written to my iCloud storage and on my home computer I can then automatically open all files using an additional script.