mirror of https://github.com/bobwen-dev/hunter
update to v1.1.4
This commit is contained in:
parent
9b463b3435
commit
6f8a636603
|
@ -263,7 +263,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
|
||||
[[package]]
|
||||
name = "hunter"
|
||||
version = "1.1.3"
|
||||
version = "1.1.4"
|
||||
dependencies = [
|
||||
"alphanumeric-sort 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"async_value 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "hunter"
|
||||
version = "1.1.3"
|
||||
version = "1.1.4"
|
||||
authors = ["rabite0"]
|
||||
edition = "2018"
|
||||
description = "Fast, lag-free terminal file browser"
|
||||
|
|
13
README.md
13
README.md
|
@ -24,11 +24,13 @@ A big thanks to ranger and its developers. Without its inspiration this wouldn't
|
|||
* Multi-file selection
|
||||
* Enter directories/select files using external command like fzf
|
||||
* ranger import for bookmarks/tags
|
||||
* minibuffer with completion and filename/selection/tab/directory substitution
|
||||
* subprocess viewer that shows output of started subprocesses
|
||||
* exit and cd into last directory and put selected files into shell variables
|
||||
* slide up animation for previews for a smoother experience (configurable)
|
||||
* fffast
|
||||
* Minibuffer with completion and filename/selection/tab/directory substitution
|
||||
* Subprocess viewer that shows output of started subprocesses
|
||||
* Exit and cd into last directory and put selected files into shell variables
|
||||
* Slide up animation for previews for a smoother experience (configurable)
|
||||
* Can show icons with the [right fonts](https://github.com/ryanoasis/nerd-fonts)
|
||||
|
||||
|
||||
|
||||
## Known to work on:
|
||||
|
||||
|
@ -102,6 +104,7 @@ animation=on
|
|||
show_hidden=off
|
||||
select_cmd=find -type f | fzf -m
|
||||
cd_cmd=find -type d | fzf
|
||||
icons=off
|
||||
```
|
||||
|
||||
## Drop into hunter cwd on quit
|
||||
|
|
Loading…
Reference in New Issue