Open In Fleet

This commit is contained in:
Enner Pérez 2024-03-28 00:49:32 -05:00
parent 91bc1ee8ab
commit cde5fc8f73
11 changed files with 149 additions and 59 deletions

View file

@ -54,6 +54,12 @@ namespace SourceGit.ViewModels
{
get => !string.IsNullOrEmpty(Native.OS.VSCodeExecutableFile);
}
[JsonIgnore]
public bool IsFleetFound
{
get => !string.IsNullOrEmpty(Native.OS.FleetExecutableFile);
}
[JsonIgnore]
public Models.GitFlow GitFlow
@ -285,6 +291,11 @@ namespace SourceGit.ViewModels
{
Native.OS.OpenInVSCode(_fullpath);
}
public void OpenInFleet()
{
Native.OS.OpenInFleet(_fullpath);
}
public void OpenInTerminal()
{