Skip to content

Commit

Permalink
Visit deep level branches (#686)
Browse files Browse the repository at this point in the history
* Visit deep level branches

- Press `)` to pass `NextVisitedDeepBranch`
- Press `(` to pass `LastVisitedDeepBranch`

* Last -> Previous

* Upgrade pkgs

* Clippy fixes

* Fix clippy err
  • Loading branch information
sayanarijit committed Jan 3, 2024
1 parent 75ef15a commit 07f1514
Show file tree
Hide file tree
Showing 15 changed files with 822 additions and 555 deletions.
788 changes: 465 additions & 323 deletions Cargo.lock

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,29 @@ categories = ['command-line-interface', 'command-line-utilities']
include = ['src/**/*', 'docs/en/src/**/*', 'LICENSE', 'README.md']

[dependencies]
libc = "0.2.147"
libc = "0.2.151"
humansize = "2.1.3"
natord = "1.0.9"
anyhow = "1.0.72"
serde_yaml = "0.9.25"
anyhow = "1.0.79"
serde_yaml = "0.9.30"
crossterm = { version = "0.27.0", features = [], default-features = false }
ansi-to-tui = "3.1.0"
regex = "1.9.3"
regex = "1.10.2"
gethostname = "0.4.3"
serde_json = "1.0.104"
path-absolutize = "3.1.0"
which = "4.4.0"
serde_json = "1.0.110"
path-absolutize = "3.1.1"
which = "5.0.0"
nu-ansi-term = "0.49.0"
textwrap = "0.16"
snailquote = "0.3.1"
skim = { version = "0.10.4", default-features = false }
time = { version = "0.3.25", features = ["serde", "local-offset", "formatting", "macros"] }
time = { version = "0.3.31", features = ["serde", "local-offset", "formatting", "macros"] }
jf = "0.6.2"
xdg = "2.5.2"
home = "0.5.5"
home = "0.5.9"

[dependencies.lscolors]
version = "0.15.0"
version = "0.16.0"
default-features = false
features = ["nu-ansi-term"]

Expand All @@ -57,22 +57,22 @@ version = "2.0.4"
default-features = false

[dependencies.tui]
version = "0.22.0"
version = "0.25.0"
default-features = false
features = ['crossterm', 'serde']
features = ['crossterm', 'serde', 'underline-color']
package = 'ratatui'

[dependencies.serde]
version = "1.0.183"
version = "1.0.194"
features = []
default-features = false

[dependencies.indexmap]
version = "2.0.0"
version = "2.1.0"
features = ['serde']

[dependencies.mlua]
version = "0.8.9"
version = "0.9.2"
features = ['luajit', 'vendored', 'serialize', 'send']

[dependencies.tui-input]
Expand Down
1 change: 0 additions & 1 deletion docs/en/src/awesome-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,3 @@ of the following plugins work for you, it's very easy to
[62]: https://github.com/duganchen/one-table-column.xplr
[63]: https://github.com/dy-sh/dysh-style.xplr
[64]: https://github.com/dy-sh/get-rid-of-index.xplr

Loading

0 comments on commit 07f1514

Please sign in to comment.