Skip to content

Commit

Permalink
Console.Unix: fix escape sequence for setting title on 'screen' TERM. (
Browse files Browse the repository at this point in the history
  • Loading branch information
tmds authored Feb 21, 2023
1 parent 463954d commit a4c9243
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ private static string GetTitle(TermInfo.Database db)
case "konsole":
return "\x1B]30;%p1%s\x07";
case "screen":
return "\x1Bk%p1%s\x1B";
return "\x1Bk%p1%s\x1B\\";
default:
return string.Empty;
}
Expand Down

0 comments on commit a4c9243

Please sign in to comment.