Skip to content

Commit 1862428

Browse files
committed
feature: supports Warp terminal on macOS (#829)
Signed-off-by: leo <[email protected]>
1 parent 50892f7 commit 1862428

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/Models/ShellOrTerminal.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ static ShellOrTerminal()
4141
{
4242
new ShellOrTerminal("mac-terminal", "Terminal", ""),
4343
new ShellOrTerminal("iterm2", "iTerm", ""),
44+
new ShellOrTerminal("warp", "Warp", ""),
4445
};
4546
}
4647
else

src/Native/MacOS.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ public string FindTerminal(Models.ShellOrTerminal shell)
3636
return "Terminal";
3737
case "iterm2":
3838
return "iTerm";
39+
case "warp":
40+
return "Warp";
3941
}
4042

4143
return string.Empty;
2.68 KB
Loading

0 commit comments

Comments
 (0)