Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't end the current mark, if we get one of the same kind #16107

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions src/cascadia/TerminalCore/TerminalApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,13 @@ void Terminal::MarkCommandStart()
//
//We can just do the work below safely.
}
else if (_currentPromptState == PromptState::Command)
{
// We're already in the command state. We don't want to end the current
// mark. We don't want to make a new one. We want to just leave the
// current command going.
return;
}
else
{
// If there was no last mark, or we're in a weird state,
Expand Down Expand Up @@ -369,6 +376,13 @@ void Terminal::MarkOutputStart()
//
//We can just do the work below safely.
}
else if (_currentPromptState == PromptState::Output)
{
// We're already in the output state. We don't want to end the current
// mark. We don't want to make a new one. We want to just leave the
// current output going.
return;
}
else
{
// If there was no last mark, or we're in a weird state,
Expand Down
Loading