summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-02-12 20:33:33 +0100
committerhut <hut@lavabit.com>2010-02-12 20:35:07 +0100
commit336cc468e37cb41ce9c1838c7d93138cf48e0916 (patch)
tree5031ef96a79acbb24bad0e823c678438646e4af8
parent1cb6afa91181b95464b3b30d6a603c1554c0309d (diff)
downloadranger-336cc468e37cb41ce9c1838c7d93138cf48e0916.tar.gz
statusbar: display number of marked files
-rw-r--r--ranger/gui/widgets/statusbar.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ranger/gui/widgets/statusbar.py b/ranger/gui/widgets/statusbar.py
index 3aab5e2f..a399e719 100644
--- a/ranger/gui/widgets/statusbar.py
+++ b/ranger/gui/widgets/statusbar.py
@@ -209,6 +209,7 @@ class StatusBar(Widget):
 				right.add(human_readable(sum(f.size \
 					for f in target.marked_items \
 					if f.is_file), seperator=''))
+			right.add(" / " + str(len(target.marked_items)))
 		else:
 			right.add(human_readable(target.disk_usage, seperator=''))
 			right.add(", ", "space")
3f5114eb015548d04331eb2'>^
dacf4030 ^
88663269 ^
1fad5eef ^

7cae95a9 ^
6d943605 ^
852936bf ^
6d943605 ^
01b2852b ^
6d943605 ^
88663269 ^
e45c1ce2 ^
5f128523 ^

56ce5577 ^



01b2852b ^
c8dd393c ^
793fcf5f ^

c8dd393c ^

56ce5577 ^
c8dd393c ^
75cbfa28 ^
88663269 ^
56ce5577 ^
01b2852b ^
75cbfa28 ^

88663269 ^
c2d49d81 ^

e53787f5 ^
4d1f4a66 ^


201b2e6c ^
88663269 ^
6d943605 ^
01b2852b ^
5f128523 ^
fa3d7edc ^
7b8a2ff3 ^
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