From d2c7d024290ee95afa418975c728ad64172dcfec Mon Sep 17 00:00:00 2001 From: hut Date: Sat, 9 Mar 2013 18:48:02 +0100 Subject: move examples to doc/examples --- doc/examples/plugin_file_filter.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 doc/examples/plugin_file_filter.py (limited to 'doc/examples/plugin_file_filter.py') diff --git a/doc/examples/plugin_file_filter.py b/doc/examples/plugin_file_filter.py new file mode 100644 index 00000000..965fa2e8 --- /dev/null +++ b/doc/examples/plugin_file_filter.py @@ -0,0 +1,19 @@ +# Compatible with ranger 1.6.* +# +# This plugin hides the directories "boot", "sbin", "proc" and "sys" in the +# root directory. + +# Save the original filter function +import ranger.fsobject.directory +old_accept_file = ranger.fsobject.directory.accept_file + +# Define a new one +def custom_accept_file(fname, directory, hidden_filter, name_filter): + if hidden_filter and directory.path == '/' and fname in ('boot', 'sbin', 'proc', 'sys'): + return False + else: + return old_accept_file(fname, directory, hidden_filter, name_filter) + +# Overwrite the old function +import ranger.fsobject.directory +ranger.fsobject.directory.accept_file = custom_accept_file -- cgit 1.4.1-2-gfad0