Leni Aniva

Results 39 comments of Leni Aniva

I executed `sudo pacman -S fcitx5` (reinstall), and now the behaviour is this: 1. Execute `fcitx5` in a terminal 2. Now hovering into the tray icon region is fine 3....

> This seems to be the bug for hyprland + waybar + fcitx5. > > hyprland crashes every time I run fcitx5 from command line. Firstly tested this with foot...

> Yeah, I realize. I run fcitx5 on a daily. Starting it with `exec-once` will prevent this crash. dunno why you'd want to start fcitx in the middle of a...

Seems to be a problem with the reader since this works with no problems: ```rust let output = std::process::Command::new("echo").arg("∀").output().expect("1"); let l = std::str::from_utf8(&output.stdout).expect("2"); println!("echo: {}", l); ```

I dug into this a bit more and I think the problem is with `NBReader`. The following test fails when put into `reader.rs`: ```rust #[test] fn test_expect_unicode() { let f...

> Running into this issue now also. Would be lovely to see the MR merged :) sadly the authors seem to be inactive

The current behaviour is to withhold a half-completed unicode char from the output buffer. If the client program outputs EOF when the unicode char buffer is incomplete, the char is...

> Thanks for your patches and also for your bug report! ❤️ Highly appreciated! > > The CI failure should be fixed after #107 is merged, don't worry about that....

> If anything I'd have it as an option on the data type, not a crate-level feature or compiletime option, because of the simple fact that someone might have UTF-8...

> We merged #107 that should make your compile issues go away, please do rebase to latest master. Rebased. I added a field for `NBReader` which contains the encoding. The...