diff options
author | hut <hut@lavabit.com> | 2013-02-12 21:43:41 +0100 |
---|---|---|
committer | hut <hut@lavabit.com> | 2013-02-12 21:43:41 +0100 |
commit | 0770d21a81d6b4a47da4a751f5ddb485d0f4dc00 (patch) | |
tree | baa2996995dc4270a7a5fa2a881d705c239dbd30 | |
parent | a9bd6171c682f5c2235f435d539998770aeaddaf (diff) | |
download | ranger-0770d21a81d6b4a47da4a751f5ddb485d0f4dc00.tar.gz |
container.settingobject: sort keys of ALLOWED_SETTINGS
-rw-r--r-- | ranger/container/settingobject.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ranger/container/settingobject.py b/ranger/container/settingobject.py index 3e5c287f..2ef8a194 100644 --- a/ranger/container/settingobject.py +++ b/ranger/container/settingobject.py @@ -26,8 +26,8 @@ ALLOWED_SETTINGS = { 'mouse_enabled': bool, 'padding_right': bool, 'preview_directories': bool, - 'preview_images': bool, 'preview_files': bool, + 'preview_images': bool, 'preview_script': (str, type(None)), 'save_console_history': bool, 'scroll_offset': int, @@ -35,11 +35,11 @@ ALLOWED_SETTINGS = { 'show_cursor': bool, 'show_hidden_bookmarks': bool, 'show_hidden': bool, - 'status_bar_on_top': bool, 'sort_case_insensitive': bool, 'sort_directories_first': bool, 'sort_reverse': bool, 'sort': str, + 'status_bar_on_top': bool, 'tilde_in_titlebar': bool, 'unicode_ellipsis': bool, 'update_title': bool, |