Skip to content

Commit 36ccac7

Browse files
committed
update CHANGELOG.md
1 parent ec94f26 commit 36ccac7

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/docs/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ language: 'en'
77

88
## Unreleased
99

10+
- Fix: Windows - The behavior of using a complete shell command and a shell command with parameters is inconsistent [#533](https://github.com/raphamorim/rio/issues/533).
1011
- X11: Replace libxcursor with custom cursor code.
12+
- Fix: MacOS Delete key doesn't work in kitty mode [#513](https://github.com/raphamorim/rio/issues/513).
13+
- Fix: Kitty keyboard protocol doesn't work with tmux [#599](https://github.com/raphamorim/rio/issues/599).
14+
- Fix: Kitty keyboard protocol shifted key codes are reported in wrong order [#596](https://github.com/raphamorim/rio/issues/596).
15+
- Fix: Mouse pointer hidden (Ubuntu Wayland) / Cursor icon not changing [#383](https://github.com/raphamorim/rio/issues/383).
1116
- `use-kitty-keyboard-protocol` is now `true` as default.
1217
- Enable search functionality as default on Linux.
1318

teletypewriter/src/windows/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub fn create_pty(
4141
) -> Pty {
4242
let args = args.join(" ");
4343
let mut program = shell;
44-
program.push_str(args);
44+
program.push(args);
4545
conpty::new(program, working_directory, columns, rows).unwrap()
4646
}
4747

0 commit comments

Comments
 (0)