about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-07-18 21:30:11 +0200
committerhut <hut@lavabit.com>2009-07-18 21:30:11 +0200
commite3da2766bd220e85d6850ff6a0d1c692dba9c0d0 (patch)
tree4b5c44d354c9cc5b96a860f5cd16e4e1a54f36bd
parenteee8c9c3389d947b2362bce838a21f6417efa814 (diff)
downloadranger-e3da2766bd220e85d6850ff6a0d1c692dba9c0d0.tar.gz
show 'lost+found' folder if &show_hidden is on
-rw-r--r--code/directory.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/directory.rb b/code/directory.rb
index 191d3b93..65c4047c 100644
--- a/code/directory.rb
+++ b/code/directory.rb
@@ -28,7 +28,7 @@ class Directory
 		log @path
 		files = Dir.new(@path).to_a rescue []
 		if Option.show_hidden
-			files -= ['.', '..', 'lost+found']
+			files -= ['.', '..']
 		else
 			files.reject!{|x| x[0] == ?. or x == 'lost+found'}
 		end
id'>5beb25b5 ^
6e1eeeeb ^



b3cdcdd4 ^
a9817844 ^
a9817844 ^
6e1eeeeb ^
a9817844 ^
b96af395 ^






6e1eeeeb ^





































a56d969e ^
6e1eeeeb ^































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
26
27
28
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106