diff options
-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, |