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

add missing separators #1696

Merged
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
<description>
<ul>
<li>Do not abort when failing to create `XDG_STATE_HOME/contour/crash` directory</li>
<li>Fixes DECRQSS for SGR (#1696)</li>
<li>Fixes tab switch crash after resize</li>
<li>Fixes tab shrinking after tab creation/switches when a non-zero horizontal window margin is configured</li>
<li>Fixes startup crash when window is not yet fully initialized</li>
Expand Down
1 change: 1 addition & 0 deletions src/vtbackend/Screen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ namespace // {{{ helper
output += value;
};
auto const sgrAddSub = [&](unsigned value) {
sgrSep();
output += std::to_string(value);
};

Expand Down
Loading