Turn off numeric colaltion by default

This commit is contained in:
Kovid Goyal 2013-02-23 22:15:20 +05:30
parent d464e8b70e
commit b76b53bea0

View File

@ -519,9 +519,8 @@ preselect_first_completion = False
#: Recognize numbers inside text when sorting #: Recognize numbers inside text when sorting
# This means that when sorting on text fields like title the text "Book 2" # This means that when sorting on text fields like title the text "Book 2"
# will sort before the text "Book 100". This is how humans usually expect # will sort before the text "Book 100". If you want this behavior, set
# things to sort. If you prefer the computer sort (which is a little faster, # numeric_collation = True note that doing so will cause problems with text
# but will cause Book 100 to sort before Book 2), then set numeric_collation # that starts with numbers and is a little slower.
# to False. numeric_collation = False
numeric_collation = True