summary refs log blame commit diff stats
path: root/doc/examples/plugin_file_filter.py
blob: bad5a3685a3a8576664b05e310e3d66bec5928db (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.container.directory
old_accept_file = ranger.container.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.container.directory
ranger.container.directory.accept_file = custom_accept_file