summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-05-30 22:33:02 +0200
committerhut <hut@lavabit.com>2010-05-30 22:33:02 +0200
commit95c24d99c2253bdff37bdec4e5f2b4dc06050b57 (patch)
tree588f5ba177fa004070ac9449383b66173083ae2f
parentda2d9aee9e6cb1cbcad11e59fa549a59eebd531e (diff)
downloadranger-95c24d99c2253bdff37bdec4e5f2b4dc06050b57.tar.gz
defaults.options: fixed typo in regexp
-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 d93d7685..3d884172 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'lost\+found|^\.|~$|\.(:?pyc|pyo|bak|swp)$')
+	r'lost\+found|^\.|~$|\.(?:pyc|pyo|bak|swp)$')
 show_hidden = False
 
 # Show dotfiles in the bookmark preview box?
ame/examples/plugin_new_macro.py?id=6f7e47d6a91627fab3e08f42df5114db3c22841a'>^
b3d031a9 ^
185c022e ^
ab41c776 ^

b3d031a9 ^
972da7ba ^
b3d031a9 ^
24712b90 ^

972da7ba ^
b3d031a9 ^
972da7ba ^
185c022e ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25