Kyohei Uto

Results 55 comments of Kyohei Uto

Yeah, very good point. I'll consider it.

@balroggg Hi, a little bit different topic, but I introduced [hpjansson](https://github.com/hpjansson) / [chafa](https://github.com/hpjansson/chafa) instead of libsixel/viuer. chafa likely outperforms libsixel, and this will greatly improve the code maintainability. If you...

Hm. For example, how big is that file you feel problematic?

Very useful information! Thank you. It sounds at least the file size check should be done before showing preview.

Thanks, that crate really helps. `alt-image` branch was merged into `develop`: - Use `chafa` instead of `libsixel` & `viuer` to preview image files. This greatly improves the performance and code...

Not so necessary: With this option the binary's size is 2MB in my environment (Linux), while without it 6MB, which is not really heavy I think. It seems we cannot...

cf: https://github.com/rust-lang/cargo/issues/4897 Also, please see https://doc.rust-lang.org/rustc/codegen-options/index.html#strip With 1.58.0, `RUSTFLAGS='-C strip=symbols' cargo build --release` is equal to `strip=true` option in Cargo.toml, so you can do the same without this option (Though...

@zQueal Sorry for not touching this issue, I don't have a Windows environment. @shirok1 Thank you for the suggestion. That makes sense, I'll give it a try.

Thank you for the request. I'm not familiar with macOS package managers, so will do some digging.

I faced the same problem: By using termion, for example, clearing the image goes like this: ``` for i in 0..terminal_row { print!("{}", cursor::Goto(BEGINNING_COLUMN, BEGINNING_ROW + i as u16)); print!("{}",...