feature: supports Zed editor as an external editor (#477)

This commit is contained in:
leo 2024-09-18 10:00:32 +08:00
parent a00cf4f009
commit ba9c3058ed
No known key found for this signature in database
5 changed files with 8 additions and 0 deletions

View file

@ -149,6 +149,11 @@ namespace SourceGit.Models
TryAdd("Sublime Text", "sublime_text", "\"{0}\"", "SUBLIME_TEXT", platformFinder);
}
public void Zed(Func<string> platformFinder)
{
TryAdd("Zed", "zed", "\"{0}\"", "ZED", platformFinder);
}
public void FindJetBrainsFromToolbox(Func<string> platformFinder)
{
var exclude = new List<string> { "fleet", "dotmemory", "dottrace", "resharper-u", "androidstudio" };