summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lepus.uberspace.de>2014-02-15 13:15:10 +0100
committerhut <hut@lepus.uberspace.de>2014-02-15 13:15:10 +0100
commit37e085d2f91f47060f0f685f66164d331c5db9ae (patch)
tree024dbdf2bc3bc5a2accba2c0f361ccee65be7545
parent883e8ddb38ba662f2b77ea97e0c3f68f041f143c (diff)
downloadranger-37e085d2f91f47060f0f685f66164d331c5db9ae.tar.gz
container.settings: sort ALLOWED_SETTINGS alphabetically
-rw-r--r--ranger/container/settings.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ranger/container/settings.py b/ranger/container/settings.py
index f46acd38..44bd60e0 100644
--- a/ranger/container/settings.py
+++ b/ranger/container/settings.py
@@ -11,6 +11,7 @@ import os.path
 ALLOWED_SETTINGS = {
     'autosave_bookmarks': bool,
     'autoupdate_cumulative_size': bool,
+    'cd_bookmarks': bool,
     'collapse_preview': bool,
     'colorscheme': str,
     'column_ratios': (tuple, list),
@@ -26,12 +27,13 @@ ALLOWED_SETTINGS = {
     'max_console_history_size': (int, type(None)),
     'max_history_size': (int, type(None)),
     'mouse_enabled': bool,
+    'open_all_images': bool,
     'padding_right': bool,
     'preview_directories': bool,
     'preview_files': bool,
     'preview_images': bool,
-    'preview_script': (str, type(None)),
     'preview_max_size': int,
+    'preview_script': (str, type(None)),
     'save_console_history': bool,
     'scroll_offset': int,
     'shorten_title': int,
@@ -43,18 +45,16 @@ ALLOWED_SETTINGS = {
     'sort_reverse': bool,
     'sort': str,
     'status_bar_on_top': bool,
-    'open_all_images': bool,
     'tilde_in_titlebar': bool,
     'unicode_ellipsis': bool,
     'update_title': bool,
     'update_tmux_title': bool,
     'use_preview_script': bool,
     'vcs_aware': bool,
+    'vcs_backend_bzr': str,
     'vcs_backend_git': str,
     'vcs_backend_hg': str,
-    'vcs_backend_bzr': str,
     'xterm_alt_key': bool,
-    'cd_bookmarks': bool,
 }
 
 DEFAULT_VALUES = {