-
Notifications
You must be signed in to change notification settings - Fork 377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating to Yazi v0.2.0 #461
Comments
crates.io does not show v0.2 yet. Is releasing to creates.io not part of the automated release process? |
Done! 🚀 |
I'm going to lock this issue because it has been closed for 30 days. ⏳ This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
If you encounter any issues during the migrating, please create a discussion!
Renamed
layout
toratio
The term
ratio
better conveys the meaning of the value thanlayout
. Change it in youryazi.toml
if any:Renamed
peek
command toseek
I noticed that
peek
confuses users, as it doesn't quite convey the behavior of continuous scrolling to "seeking for" content. Change it in yourkeymap.toml
if any:Renamed
--dir_first
to--dir-first
forsort
commandIn Lua plugins, people prefer to write
emit("sort", { dir_first = true })
rather thanemit("sort", { ["dir-first"] = true })
.emit
will replace_
with-
behind the scenes automatically.dir_first
is the only option containing_
, which makes it unrepresentable. So let's change it in yourkeymap.toml
if any:Remove
[plugins.preload]
and useinit.lua
insteadThis mainly affects users who use the code from tips. Please move your UI plugin code to
~/.config/yazi/init.lua
. The new tips page is now available for Yazi v0.2.0.If you are using the "full border" tip, copy the following latest code into your
~/.config/yazi/init.lua
:The text was updated successfully, but these errors were encountered: