about summary refs log tree commit diff stats
path: root/tests/test_contact_list.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed testsJames Booth2012-10-291-221/+101
* Refactored parameter autocompletersJames Booth2012-10-221-18/+18
* Removed trailing whitespace from src and testsJames Booth2012-10-211-24/+24
* Added autobuild toolsJames Booth2012-07-011-0/+498
s='alt'>
972da7ba ^

9b065d0a ^
972da7ba ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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