summary refs log tree commit diff stats
path: root/examples/plugin_avfs.py
diff options
context:
space:
mode:
authorhut <hut@hut.pm>2018-05-15 22:07:54 +0200
committerGitHub <noreply@github.com>2018-05-15 22:07:54 +0200
commit3f210e8eef8332d87e4060965a2790510546978f (patch)
treeba17af8e2a60e5db8e9b47884705aa30cacbac3f /examples/plugin_avfs.py
parent703a9a20a640ee53080c9b3c405ae55f652b70e5 (diff)
parent77471381f2f9350c87ed989ded1428712002329a (diff)
downloadranger-3f210e8eef8332d87e4060965a2790510546978f.tar.gz
Merge branch 'master' into patch-1
Diffstat (limited to 'examples/plugin_avfs.py')
-rw-r--r--examples/plugin_avfs.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/plugin_avfs.py b/examples/plugin_avfs.py
new file mode 100644
index 00000000..07968a03
--- /dev/null
+++ b/examples/plugin_avfs.py
@@ -0,0 +1,33 @@
+# Tested with ranger 1.9.1
+#
+# A very simple and possibly buggy support for AVFS
+# (http://avf.sourceforge.net/), that allows ranger to handle
+# archives.
+#
+# Run `:avfs' to browse the selected archive.
+
+from __future__ import (absolute_import, division, print_function)
+
+import os
+import os.path
+
+from ranger.api.commands import Command
+
+
+class avfs(Command):  # pylint: disable=invalid-name
+    avfs_root = os.path.join(os.environ["HOME"], ".avfs")
+    avfs_suffix = "#"
+
+    def execute(self):
+        if os.path.isdir(self.avfs_root):
+            archive_directory = "".join([
+                self.avfs_root,
+                self.fm.thisfile.path,
+                self.avfs_suffix,
+            ])
+            if os.path.isdir(archive_directory):
+                self.fm.cd(archive_directory)
+            else:
+                self.fm.notify("This file cannot be handled by avfs.", bad=True)
+        else:
+            self.fm.notify("Install `avfs' and run `mountavfs' first.", bad=True)