From 5e41c8479cfba986f6dad0e68aed3c1d7b51d3ae Mon Sep 17 00:00:00 2001 From: hut Date: Thu, 29 Sep 2011 23:17:36 +0200 Subject: core.actions: fixed cycling by atime and mtime --- ranger/core/actions.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ranger/core/actions.py') diff --git a/ranger/core/actions.py b/ranger/core/actions.py index b61e514b..96e23189 100644 --- a/ranger/core/actions.py +++ b/ranger/core/actions.py @@ -426,6 +426,10 @@ class Actions(FileManagerAware, EnvironmentAware, SettingsAware): fnc = lambda item: item.mimetype elif order == 'ctime': fnc = lambda item: -int(item.stat and item.stat.st_ctime) + elif order == 'atime': + fnc = lambda item: -int(item.stat and item.stat.st_atime) + elif order == 'mtime': + fnc = lambda item: -int(item.stat and item.stat.st_mtime) lst.sort(key=fnc) cwd.set_cycle_list(lst) return cwd.cycle(forward=None) -- cgit 1.4.1-2-gfad0