Open ComfyDust opened 6 years ago
@ComfyDust Is it possible for me to try your fix and actually edit multiple files at once?
@github-jane-doe It's technically possible but it might be a bit of a pain since you would have to launch the extension in an extension developer workspace whenever using it. Since creating this PR I've personally switched to using the official remote VS Code extension packs when working on code stored remotely or in the WSL.
@github-jane-doe It's technically possible but it might be a bit of a pain since you would have to launch the extension in an extension developer workspace whenever using it. Since creating this PR I've personally switched to using the official remote VS Code extension packs when working on code stored remotely or in the WSL.
Unfortunately, as far as I know, the remote VS Code extension does not work on macOS
Hey Rafael,
This pull request mostly solves issue #43 . Summary:
preview
is set to false in the call toshowTextDocument()
so that multiple files can be opened simultaneously without disablingworkbench.editor.enablePreview
globally in VS Code.RemoteFile
andCommand
associated with theSession
class are stored in arrays to allow multiple files to be sent in a single session.Unfortunately, number 2 only works most of the time. Occasionally only the first file is opened, so I highly suspect there's a race condition somewhere.
Cheers!