mv
Use to move the selected file to
commands.py
class mv(Command):
"""
:mv <DEST>
"""
def execute(self):
from ranger.ext.shell_escape import shell_quote
self.fm.execute_console('shell mv %s ' + shell_quote(self.rest(1)))
from ranger.config import commands
tab = commands.cd.tab
Recommended Posts