summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2011-04-02 23:06:56 +0200
committerhut <hut@lavabit.com>2011-04-05 17:03:50 +0200
commitc9023dbd5bee393da3f0913a2977f717270426af (patch)
treec8ae81936bb4a8d9670027bd5ab05c619a514870
parentd1784230c9f05c7032a17ebd46d2362f2c371ad6 (diff)
downloadranger-c9023dbd5bee393da3f0913a2977f717270426af.tar.gz
defaults/options.py: hide __cache__ folder
-rw-r--r--ranger/defaults/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py
index 124fa212..a2289729 100644
--- a/ranger/defaults/options.py
+++ b/ranger/defaults/options.py
@@ -36,7 +36,7 @@ from ranger.api.options import *
 # Which files should be hidden?  Toggle this by typing `zh' or
 # changing the setting `show_hidden'
 hidden_filter = regexp(
-	r'^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$')
+	r'^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__cache__$')
 show_hidden = False
 
 # Which script is used to generate file previews?
a id='n118' href='#n118'>118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150