From 95c24d99c2253bdff37bdec4e5f2b4dc06050b57 Mon Sep 17 00:00:00 2001 From: hut Date: Sun, 30 May 2010 22:33:02 +0200 Subject: defaults.options: fixed typo in regexp --- ranger/defaults/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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? -- cgit 1.4.1-2-gfad0 61454e064449abed66beb6ba558f95'>this commit mirror of ranger - a simple, vim-like file managerakspecs <akspecs@tilde.institute>
summary refs log tree commit diff stats
path: root/examples/plugin_linemode.py
blob: febde8f15a336c8b04bfab178db2b72bcde1cc88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78