我想将东西快速移动到不同的文件夹,这是我的映射
map mh shell -f mv %f /home/sln
map mw shell -f mv %f /home/sln/Work
map md shell -f mv %f /home/sln/Documents
map mk shell -f mv %f /home/sln/Downloads
map dD shell -f mv %f /home/sln/TrashBin //I hate delete function from Ranger ALWAYS makes accident!!!
问题:
- 每次我都需要点击回车键才能使移动操作生效。如何在没有回车键的情况下进行移动
- 无法移动所有选定的文件,只能逐个移动,如何在我的按键绑定中解决此问题
答案1
m
Ranger 使用它来设置标记(这样你就可以使用 快速转到不同的目录'
)
尝试使用 Ranger 尚未映射的键。例如:
map Th shell -f mv %f /home/sln
另外,您可能不想mv
在后台运行 - (不确定输入是什么意思,但它可能没有更新?),如果是这样,请删除-f
:
map Th shell mv %f /home/sln
要移动所有选定的文件,请使用%s
:
map Th shell mv %s /home/sln