Skip to content

Commit 3930286

Browse files
committed
Set classified-sort option to false by default as it caused confusion
The classified-sort option was previously set to true by default, which led to confusion for many users. It wasn't an intentional decision, so we're updating the default to false to avoid unexpected column ordering.
1 parent 4611f33 commit 3930286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/annotate_rb/parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ def add_options_to_parser(option_parser) # rubocop:disable Metrics/MethodLength
394394

395395
option_parser.on("--classified-sort",
396396
"Sort columns alphabetically, but first goes id, then the rest columns, then the timestamp columns and then the association columns") do
397-
@options[:classified_sort] = true
397+
@options[:classified_sort] = false
398398
end
399399

400400
option_parser.on("-R",

0 commit comments

Comments
 (0)