summary refs log tree commit diff stats
path: root/ranger
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-10-02 16:10:21 +0200
committerhut <hut@lavabit.com>2010-10-02 16:10:21 +0200
commit1ef0ade55d7e678ee036a821b26dbf9dc95fb877 (patch)
tree4cb2d8ca25a43531c9282ea0ff4903a406407988 /ranger
parent1120d70c8f259a55bfeeb4c97c5a1e9d78ddebaf (diff)
downloadranger-1ef0ade55d7e678ee036a821b26dbf9dc95fb877.tar.gz
core.fm: Don't check bookmarks when not needed
Diffstat (limited to 'ranger')
-rw-r--r--ranger/core/actions.py3
-rw-r--r--ranger/core/fm.py6
-rw-r--r--ranger/gui/widgets/browserview.py1
3 files changed, 6 insertions, 4 deletions
diff --git a/ranger/core/actions.py b/ranger/core/actions.py
index 59902bab..4b3752ef 100644
--- a/ranger/core/actions.py
+++ b/ranger/core/actions.py
@@ -472,6 +472,7 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 	def enter_bookmark(self, key):
 		"""Enter the bookmark with the name <key>"""
 		try:
+			self.bookmarks.update_if_outdated()
 			destination = self.bookmarks[key]
 			cwd = self.env.cwd
 			if destination.path != cwd.path:
@@ -482,10 +483,12 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware):
 
 	def set_bookmark(self, key):
 		"""Set the bookmark with the name <key> to the current directory"""
+		self.bookmarks.update_if_outdated()
 		self.bookmarks[key] = self.env.cwd
 
 	def unset_bookmark(self, key):
 		"""Delete the bookmark with the name <key>"""
+		self.bookmarks.update_if_outdated()
 		self.bookmarks.delete(key)
 
 	def draw_bookmarks(self):
diff --git a/ranger/core/fm.py b/ranger/core/fm.py
index 7f655aa6..5e01f96f 100644
--- a/ranger/core/fm.py
+++ b/ranger/core/fm.py
@@ -134,14 +134,12 @@ class FM(Actions, SignalDispatcher):
 		# for faster lookup:
 		ui = self.ui
 		throbber = ui.throbber
-		bookmarks = self.bookmarks
 		loader = self.loader
 		env = self.env
 		has_throbber = hasattr(ui, 'throbber')
 
 		try:
 			while True:
-				bookmarks.update_if_outdated()
 				loader.work()
 				if has_throbber:
 					if loader.has_work():
@@ -166,5 +164,5 @@ class FM(Actions, SignalDispatcher):
 			raise SystemExit
 
 		finally:
-			bookmarks.remember(env.cwd)
-			bookmarks.save()
+			self.bookmarks.remember(env.cwd)
+			self.bookmarks.save()
diff --git a/ranger/gui/widgets/browserview.py b/ranger/gui/widgets/browserview.py
index c80e4885..142e7985 100644
--- a/ranger/gui/widgets/browserview.py
+++ b/ranger/gui/widgets/browserview.py
@@ -117,6 +117,7 @@ class BrowserView(Widget, DisplayableContainer):
 				pass
 
 	def _draw_bookmarks(self):
+		self.fm.bookmarks.update_if_outdated()
 		self.color_reset()
 		self.need_clear = True
 
> 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
amp;id=34a60763e79546e0f84e30fbcc430632f3dbb39e'>34a60763 ^

4c13e1f2 ^























34a60763 ^
4c13e1f2 ^





34a60763 ^



4c13e1f2 ^







34a60763 ^



4c13e1f2 ^



















34a60763 ^
4c13e1f2 ^




34a60763 ^



4c13e1f2 ^

34a60763 ^
4c13e1f2 ^


34a60763 ^
4c13e1f2 ^



34a60763 ^
4c13e1f2 ^

34a60763 ^
4c13e1f2 ^





34a60763 ^

4c13e1f2 ^

34a60763 ^
4c13e1f2 ^

1cd06f3f ^
4c13e1f2 ^




34a60763 ^
4c13e1f2 ^


























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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239