-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added vim-like scrolling as the default scrolling method. Set `xplr.config.general.paginated_scrolling = false` to disable ~ by @ElSamhaa & @sayanarijit. - Added `xplr.config.general.scroll_padding` config option to set the padding in vim-like scrolling ~ by @ElSamhaa & @sayanarijit. - Fixed some color rendering issues ~ by @har7an. - Added feature flag so that xplr can be build with system Lua ~ by @nekopsykose. - Fixed `ScrollUpHalf` behavior. - `xplr.util.lscolor()` won't return nil anymore. - Arguments passed to the custom dynamic layout Lua function will include `scrolltop` field. - Fixed node_type resolution for directories with `.` in their name ~ by @abhinavnatarajan. - Dependency updates.
- Loading branch information
Showing
29 changed files
with
1,052 additions
and
1,093 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ path = './benches/criterion.rs' | |
|
||
[package] | ||
name = 'xplr' | ||
version = '0.21.7' | ||
version = '0.21.8' | ||
authors = ['Arijit Basu <[email protected]>'] | ||
edition = '2021' | ||
description = 'A hackable, minimal, fast TUI file explorer' | ||
|
@@ -28,7 +28,7 @@ natord = "1.0.9" | |
anyhow = "1.0.81" | ||
serde_yaml = "0.9.33" | ||
crossterm = { version = "0.27.0", features = [], default-features = false } | ||
ansi-to-tui = "4.0.1" | ||
ansi-to-tui = "3.1.0" | ||
regex = "1.10.3" | ||
gethostname = "0.4.3" | ||
serde_json = "1.0.114" | ||
|
@@ -57,7 +57,7 @@ version = "2.0.4" | |
default-features = false | ||
|
||
[dependencies.tui] | ||
version = "0.26.1" | ||
version = "=0.26.1" # https://github.com/ratatui-org/ratatui/issues/1032 | ||
default-features = false | ||
features = ['crossterm', 'serde'] | ||
package = 'ratatui' | ||
|
@@ -73,7 +73,7 @@ features = ['serde'] | |
|
||
[dependencies.mlua] | ||
version = "0.9.6" | ||
features = ['luajit', 'vendored', 'serialize', 'send'] | ||
features = ['luajit', 'serialize', 'send'] | ||
|
||
[dependencies.tui-input] | ||
version = "0.8.0" | ||
|
@@ -90,5 +90,5 @@ panic = 'abort' | |
strip = true | ||
|
||
[features] | ||
|
||
|
||
default = ["vendored-lua"] | ||
vendored-lua = ["mlua/vendored"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
v="0.4.37" | ||
|
||
curl -L https://github.com/rust-lang/mdBook/releases/download/v$v/mdbook-v$v-x86_64-unknown-linux-gnu.tar.gz -o mdbook.tgz \ | ||
&& tar xzvf mdbook.tgz \ | ||
&& ./mdbook build docs/en \ | ||
&& mkdir dist \ | ||
&& mv -v docs/en/book/html dist/en \ | ||
&& mv -v assets dist \ | ||
&& mv -v docs/landing/index.html docs/landing/css docs/landing/js dist \ | ||
&& rm -v mdbook \ | ||
&& rm -v mdbook.tgz |
Oops, something went wrong.