Last active
August 23, 2018 20:41
-
-
Save vifon/fd1c4e477271e1917b25d507290c6a6f to your computer and use it in GitHub Desktop.
ranger 2-way chdir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Patched from ranger commit 8d4808fc | |
class shell(Command): | |
escape_macros_for_shell = True | |
def execute(self): | |
if self.arg(1) and self.arg(1)[0] == '-': | |
flags = self.arg(1)[1:] | |
command = self.rest(2) | |
else: | |
flags = '' | |
command = self.rest(1) | |
if command: | |
self.fm.execute_command(command, flags=flags) | |
# <THIS WAS ADDED> | |
if command == "$SHELL": | |
try: | |
with open("/tmp/rangershelldir-" + os.environ['USER'], "r") as f: | |
self.fm.cd(f.readline().strip()) | |
os.unlink("/tmp/rangershelldir-" + os.environ['USER']) | |
except IOError: | |
pass | |
# </THIS WAS ADDED> | |
def tab(self, tabnum): | |
from ranger.ext.get_executables import get_executables | |
if self.arg(1) and self.arg(1)[0] == '-': | |
command = self.rest(2) | |
else: | |
command = self.rest(1) | |
start = self.line[0:len(self.line) - len(command)] | |
try: | |
position_of_last_space = command.rindex(" ") | |
except ValueError: | |
return (start + program + ' ' for program | |
in get_executables() if program.startswith(command)) | |
if position_of_last_space == len(command) - 1: | |
selection = self.fm.thistab.get_selection() | |
if len(selection) == 1: | |
return self.line + selection[0].shell_escaped_basename + ' ' | |
return self.line + '%s ' | |
before_word, start_of_word = self.line.rsplit(' ', 1) | |
return (before_word + ' ' + file.shell_escaped_basename | |
for file in self.fm.thisdir.files or [] | |
if file.shell_escaped_basename.startswith(start_of_word)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [ -n "$RANGER_LEVEL" ]; then | |
trap "pwd > /tmp/rangershelldir-$USER" EXIT | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment