summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2012-01-14 23:58:42 +0100
committerhut <hut@lavabit.com>2012-01-14 23:58:42 +0100
commit7fb3df7ce886f1f3085bd8561669cef714d077e3 (patch)
tree5d99d588c00493a65b3dcef5ae3e88c700ed5be1
parent98bca305d5e053ccd624073e2c2ecac50640106f (diff)
downloadranger-7fb3df7ce886f1f3085bd8561669cef714d077e3.tar.gz
defaults/options: case insensitive sort by default
-rw-r--r--ranger/defaults/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/defaults/options.py b/ranger/defaults/options.py
index 46bca607..d076a96d 100644
--- a/ranger/defaults/options.py
+++ b/ranger/defaults/options.py
@@ -116,7 +116,7 @@ show_cursor = False
 # One of: size, basename, mtime, type
 sort = 'natural'
 sort_reverse = False
-sort_case_insensitive = False
+sort_case_insensitive = True
 sort_directories_first = True
 
 # Enable this if key combinations with the Alt Key don't work for you.
href='#n117'>117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207