diff options
author | hut <hut@lavabit.com> | 2011-09-29 23:17:36 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2011-09-29 23:19:27 +0200 |
commit | 5e41c8479cfba986f6dad0e68aed3c1d7b51d3ae (patch) | |
tree | da3a207377d29914511ce2b8f2d6b3c1cc94c5a5 | |
parent | 2df0ad57d31b348acd2821d752aad9a84929314c (diff) | |
download | ranger-5e41c8479cfba986f6dad0e68aed3c1d7b51d3ae.tar.gz |
core.actions: fixed cycling by atime and mtime
-rw-r--r-- | ranger/core/actions.py | 4 | ||||
-rw-r--r-- | ranger/defaults/keys.py | 4 |
2 files changed, 7 insertions, 1 deletions
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) diff --git a/ranger/defaults/keys.py b/ranger/defaults/keys.py index e8acebb7..14ecef54 100644 --- a/ranger/defaults/keys.py +++ b/ranger/defaults/keys.py @@ -311,9 +311,11 @@ map('n', fm.search()) map('N', fm.search(forward=False)) map('c<bg>', fm.hint('*w*:rename ch*d*ir *search order:* ' \ - '*c*time *m*imetype *s*ize *t*ag')) + '*a*time *c*time *M*time *m*imetype *s*ize *t*ag')) map('ct', fm.search(order='tag')) map('cc', fm.search(order='ctime')) +map('ca', fm.search(order='atime')) +map('cM', fm.search(order='mtime')) map('cm', fm.search(order='mimetype')) map('cs', fm.search(order='size')) |