Skip to content

Commit

Permalink
Merge pull request #155968 from microsoft/tyriar/actual_return_symbol
Browse files Browse the repository at this point in the history
Use actual return symbol unicode char for new line
  • Loading branch information
Tyriar authored Jul 22, 2022
2 parents 688c30e + a02eaff commit db13aa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
commandMap.add(executingCommand);
}
function formatLabel(label: string) {
return label.replace(/\r?\n/g, '\u21B5');
return label.replace(/\r?\n/g, '\u23CE');
}
if (commands && commands.length > 0) {
for (const entry of commands) {
Expand Down

0 comments on commit db13aa6

Please sign in to comment.