From c6ea5aece0aa4cf542ca2e6a8e89adc312e8b73a Mon Sep 17 00:00:00 2001 From: KaiExecutor Date: Tue, 10 Jun 2025 17:02:17 +0800 Subject: [PATCH] Update README.md Add the support of higher version. --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 577a2c4..b49baab 100644 --- a/README.md +++ b/README.md @@ -33,22 +33,23 @@ the bookmarks are saved in DDS's state file (`~/.local/state/yazi/.dds` on Linux Add this to your `keymap.toml`: ```toml -[[manager.prepend_keymap]] +# If your yazi version is lower than v25.5.28, repleace "mgr" by "manager". +[[mgr.prepend_keymap]] on = [ "m" ] run = "plugin bookmarks save" desc = "Save current position as a bookmark" -[[manager.prepend_keymap]] +[[mgr.prepend_keymap]] on = [ "'" ] run = "plugin bookmarks jump" desc = "Jump to a bookmark" -[[manager.prepend_keymap]] +[[mgr.prepend_keymap]] on = [ "b", "d" ] run = "plugin bookmarks delete" desc = "Delete a bookmark" -[[manager.prepend_keymap]] +[[mgr.prepend_keymap]] on = [ "b", "D" ] run = "plugin bookmarks delete_all" desc = "Delete all bookmarks"