about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/container/settings.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/ranger/container/settings.py b/ranger/container/settings.py
index 521583c4..08a9c10c 100644
--- a/ranger/container/settings.py
+++ b/ranger/container/settings.py
@@ -30,6 +30,7 @@ ALLOWED_SETTINGS = {
     'cd_bookmarks': bool,
     'cd_tab_case': str,
     'cd_tab_smart': bool,
+    'clear_filters_on_dir_change': bool,
     'collapse_preview': bool,
     'colorscheme': str,
     'column_ratios': (tuple, list),
@@ -44,6 +45,7 @@ ALLOWED_SETTINGS = {
     'freeze_files': bool,
     'global_inode_type_filter': str,
     'hidden_filter': str,
+    'hostname_in_titlebar': bool,
     'idle_delay': int,
     'line_numbers': str,
     'max_console_history_size': (int, type(None)),
@@ -59,34 +61,32 @@ ALLOWED_SETTINGS = {
     'preview_max_size': int,
     'preview_script': (str, type(None)),
     'save_console_history': bool,
+    'save_tabs_on_exit': bool,
     'scroll_offset': int,
     'shorten_title': int,
     'show_cursor': bool,  # TODO: not working?
-    'show_selection_in_titlebar': bool,
     'show_hidden_bookmarks': bool,
     'show_hidden': bool,
+    'show_selection_in_titlebar': bool,
     'sort_case_insensitive': bool,
     'sort_directories_first': bool,
     'sort_reverse': bool,
-    'sort_unicode': bool,
     'sort': str,
+    'sort_unicode': bool,
     'status_bar_on_top': bool,
-    'hostname_in_titlebar': bool,
     'tilde_in_titlebar': bool,
     'unicode_ellipsis': bool,
     'update_title': bool,
     'update_tmux_title': bool,
     'use_preview_script': bool,
-    'viewmode': str,
     'vcs_aware': bool,
     'vcs_backend_bzr': str,
     'vcs_backend_git': str,
     'vcs_backend_hg': str,
     'vcs_backend_svn': str,
+    'viewmode': str,
     'wrap_scroll': bool,
     'xterm_alt_key': bool,
-    'clear_filters_on_dir_change': bool,
-    'save_tabs_on_exit': bool,
 }
 
 ALLOWED_VALUES = {