From a8421d98bbea11bee242883f2f7420e5ca498b3f Mon Sep 17 00:00:00 2001 From: Anirudh Gupta <146579014+AnirudhG07@users.noreply.github.com> Date: Sun, 1 Sep 2024 08:34:34 +0530 Subject: [PATCH] fix: key binding conflicts (#15) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 三咲雅 · Misaki Masa --- mactag.yazi/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mactag.yazi/README.md b/mactag.yazi/README.md index 6da6435..e5644a6 100644 --- a/mactag.yazi/README.md +++ b/mactag.yazi/README.md @@ -54,12 +54,12 @@ This plugin also provides the functionality to add and remove tags. Add followin ```toml [[manager.prepend_keymap]] -on = [ "t", "r" ] +on = [ "b", "r" ] run = 'plugin mactag --args="add Red"' desc = "Tag selected files with red" [[manager.prepend_keymap]] -on = [ "t", "R" ] +on = [ "b", "R" ] run = 'plugin mactag --args="remove Red"' desc = "Remove red tag from selected files" ```