docs: update for 0.4

This commit is contained in:
sxyazi
2024-12-12 08:08:09 +08:00
parent ec97f8847f
commit 62f078905b
4 changed files with 4 additions and 14 deletions

View File

@@ -5,7 +5,7 @@
# Plugins # Plugins
The following plugins can be installed using the `ya pack` package manager introduced in Yazi v0.3. The following plugins can be installed using the [`ya pack` package manager](https://yazi-rs.github.io/docs/cli#package-manager) introduced in Yazi v0.3.
For specific installation commands and configuration instructions, check the individual `README.md` of each plugin by clicking the link below: For specific installation commands and configuration instructions, check the individual `README.md` of each plugin by clicking the link below:
@@ -21,7 +21,3 @@ For specific installation commands and configuration instructions, check the ind
- [diff.yazi](diff.yazi) - Diff the selected file with the hovered file, create a living patch, and copy it to the clipboard. - [diff.yazi](diff.yazi) - Diff the selected file with the hovered file, create a living patch, and copy it to the clipboard.
- [no-status.yazi](no-status.yazi) - Remove the status bar. - [no-status.yazi](no-status.yazi) - Remove the status bar.
- [mactag.yazi](mactag.yazi) - Bring macOS's awesome tagging feature to Yazi! The plugin is only available for macOS just like the name says. - [mactag.yazi](mactag.yazi) - Bring macOS's awesome tagging feature to Yazi! The plugin is only available for macOS just like the name says.
Note that `ya` is a newly introduced standalone CLI binary, not a shell alias for Yazi (See https://github.com/sxyazi/yazi/issues/914 for details)
If you don't have it, you can also copy each directory ending with `.yazi` to your `~/.config/yazi/plugins` and manually keep them up to date.

View File

@@ -17,9 +17,7 @@ Add this to your `~/.config/yazi/keymap.toml`:
```toml ```toml
[[manager.prepend_keymap]] [[manager.prepend_keymap]]
on = "T" on = "T"
run = "plugin --sync hide-preview" run = "plugin hide-preview"
# For upcoming Yazi 0.4 (nightly version):
# run = "plugin hide-preview"
desc = "Hide or show preview" desc = "Hide or show preview"
``` ```

View File

@@ -17,9 +17,7 @@ Add this to your `~/.config/yazi/keymap.toml`:
```toml ```toml
[[manager.prepend_keymap]] [[manager.prepend_keymap]]
on = "T" on = "T"
run = "plugin --sync max-preview" run = "plugin max-preview"
# For upcoming Yazi 0.4 (nightly version):
# run = "plugin max-preview"
desc = "Maximize or restore preview" desc = "Maximize or restore preview"
``` ```

View File

@@ -15,9 +15,7 @@ Bind your <kbd>l</kbd> key to the plugin, in your `~/.config/yazi/keymap.toml`:
```toml ```toml
[[manager.prepend_keymap]] [[manager.prepend_keymap]]
on = "l" on = "l"
run = "plugin --sync smart-enter" run = "plugin smart-enter"
# For upcoming Yazi 0.4 (nightly version):
# run = "plugin smart-enter"
desc = "Enter the child directory, or open the file" desc = "Enter the child directory, or open the file"
``` ```