joshuto
joshuto copied to clipboard
ranger-like terminal file manager written in Rust
I switched my sxhkd keybinding to open a file manager from `lf` to `joshuto`. The sxhkd keybind looks like this: ``` super + f $TERMINAL -e $FILE ``` where `TERMINAL=st`...
I accidentally piped control characters to a file and tried to preview it and this crashed joshuto. Here's a minimal 2-byte reproducer: ```bash $ echo 1b0a | xxd -r -p...
This makes autocomplete behave like how it works in ranger. To test before and after, create a directory long directory chain `$HOME/foo/bar/baz`, type `:cd fo` and press Tab several times....
When configuration for mimetype added it's not clear what options such as `fork` and `silent` do. `silent` set stdin and stdout to null and is complimentary to `fork`. `fork` start...
Was able to create 60+ new tabs with ctrl+t.
This is an issue to track progress on making joshuto more network friendly. Currently, joshuto does many calls to filesystem to get file data. This can probably be reduce to...
It will be cool to have video preview in joshuto, like lf file manager with https://github.com/NikitaIvanovV/ctpv
Something like this: ``` zsh function jcd() { joshuto }; zle -N jcd; bindkey '^ ' jcd; ``` Will cause joshuto to lock up (no keyboard input works). Unsure if...
First, I want to say: I really like joshuto and appreciate the work done by this project. The default behavior - if you leave/quit joshuto - is, that you are...
[WEIRD BUG] When using tmux left right button's wont work unless I open and close a text file first.
So I am using tmux 3.3a and tried without any configurations. When using tmux I can't use arrow keys to open file or move back to earlier folder. But this...