diff options
author | hut <hut@hut.pm> | 2017-09-26 23:46:36 +0200 |
---|---|---|
committer | hut <hut@hut.pm> | 2017-09-26 23:46:36 +0200 |
commit | fec819a1a7b33811148750760879b5ee3ab0a0e0 (patch) | |
tree | edd7e766f31a2dc93b7e1c5e55fdcb6fe3b6db28 | |
parent | 5e0bfd03f40879cf051abf2a025cf15594f90d8f (diff) | |
download | ranger-fec819a1a7b33811148750760879b5ee3ab0a0e0.tar.gz |
sort container.settings.ALLOWED_SETTINGS
-rw-r--r-- | ranger/container/settings.py | 12 |
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 = { |