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

[pull] main from zellij-org:main #44

Merged
merged 2 commits into from
Dec 26, 2024
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
* fix(multiplayer): properly clear fake cursors (https://github.com/zellij-org/zellij/pull/3845)
* feat(ux): pin floating panes (https://github.com/zellij-org/zellij/pull/3876)
* fix(layout-applier): logical index pane sorting (https://github.com/zellij-org/zellij/pull/3893)
* fix(terminals): synchronized rendering detection query response (https://github.com/zellij-org/zellij/pull/3884)

## [0.41.2] - 2024-11-19
* fix(input): keypresses not being identified properly with kitty keyboard protocol in some terminals (https://github.com/zellij-org/zellij/pull/3725)
Expand Down
2 changes: 1 addition & 1 deletion zellij-server/src/panes/grid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2745,7 +2745,7 @@ impl Perform for Grid {
for param in params_iter.map(|param| param[0]) {
match param {
2026 => {
let response = "\u{1b}[2026;2$y";
let response = "\u{1b}[?2026;2$y";
self.pending_messages_to_pty
.push(response.as_bytes().to_vec());
},
Expand Down