summaryrefslogtreecommitdiff
path: root/src/testdir/test_sort.vim
AgeCommit message (Collapse)Author
2018-06-28patch 8.1.0120: buffer 'modified' set even when :sort has no changesBram Moolenaar
Problem: Buffer 'modified' set even when :sort has no changes. Solution: Only set 'modified' when lines are moved. (Jason Franklin)
2017-09-23patch 8.0.1140: still old style testsBram Moolenaar
Problem: Still old style tests. Solution: Convert two tests to new style. (Yegappan Lakshmanan)
2016-03-01patch 7.4.1468Bram Moolenaar
Problem: Sort test doesn't test with "1" argument. Solution: Also test ignore-case sorting. (Yasuhiro Matsumoto)
2016-02-29patch 7.4.1464Bram Moolenaar
Problem: When the argument of sort() is zero or empty it fails. Solution: Make zero work as documented. (suggested by Yasuhiro Matsumoto)
2016-02-22patch 7.4.1397Bram Moolenaar
Problem: Sort test fails on MS-Windows. Solution: Correct the compare function.
2016-02-22patch 7.4.1394Bram Moolenaar
Problem: Can't sort inside a sort function. Solution: Use a struct to store the sort parameters. (Jacob Niehus)
2016-01-19patch 7.4.1143Bram Moolenaar
Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort().
2015-12-03patch 7.4.951Bram Moolenaar
Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()