diff options
author | hut <hut@lavabit.com> | 2012-03-14 17:22:27 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2012-05-03 18:01:10 +0200 |
commit | e1eb43f03921ba67574f44f483042c36f2adfc01 (patch) | |
tree | 3e36e853407e31cefec9a8def68c36788c795ed7 | |
parent | 78a98cfdfb498382e953b8955d3753b413b2efd9 (diff) | |
download | ranger-e1eb43f03921ba67574f44f483042c36f2adfc01.tar.gz |
defaults/options: add __pycache__ to hidden files
-rw-r--r-- | ranger/defaults/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py index d076a96d..5e30f042 100644 --- a/ranger/defaults/options.py +++ b/ranger/defaults/options.py @@ -26,7 +26,7 @@ column_ratios = (1, 3, 4) # 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$|^__cache__$') + r'^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__(py)?cache__$') show_hidden = False # Which script is used to generate file previews? |