summary refs log blame commit diff stats
path: root/doc/examples/plugin_file_filter.py
blob: 965fa2e8081325efa032cf43754648a8ca15995f (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                              







                                                                           

                                                                                               

                           
                                                                                   



                                                          
# 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