Replies: 2 comments 1 reply
|
Yes. |
1 reply
|
This is a cross-platform app. For example: on macOS, when you launching _launcher = new ViewModels.Launcher(startupRepo);and then the callback (anonymous lambda function in following code) registered in if (this.TryGetFeature<IActivatableLifetime>() is { } activatable)
{
activatable.Activated += (_, e) =>
{
if (e is FileActivatedEventArgs { Files: { Count: > 0 } } fileArgs)
_launcher?.TryOpenRepositoryFromPath(fileArgs.Files[0].Path.LocalPath);
};
}It means that we opened |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
When I open a repo via CLI it gets opened in the workspace I'm currently in, even if there's a different workspace with the repo I'm trying to open already visible.
I end up with my repo opened in another workspace - the wrong one.
Is this the intended behaviour?
All reactions