comparison runtime/doc/change.txt @ 824:8dd456c1e283 v7.0c13

updated for version 7.0c13
author vimboss
date Sun, 09 Apr 2006 21:54:49 +0000
parents 9f345c48220b
children 6675076019ae
comparison
equal deleted inserted replaced
823:9ab23f1e137f 824:8dd456c1e283
1 *change.txt* For Vim version 7.0c. Last change: 2006 Mar 16 1 *change.txt* For Vim version 7.0c. Last change: 2006 Apr 09
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1540 field: > 1540 field: >
1541 :sort /[^,]*,/ 1541 :sort /[^,]*,/
1542 < To sort on the text at virtual column 10 (thus 1542 < To sort on the text at virtual column 10 (thus
1543 ignoring the difference between tabs and spaces): > 1543 ignoring the difference between tabs and spaces): >
1544 :sort /.*\%10v/ 1544 :sort /.*\%10v/
1545 < To sort on the first number in the line, no matter
1546 what is in front of it: >
1547 :sort /.*\ze\d/
1545 < 1548 <
1546 Note that using ":sort" with ":global" doesn't sort the matching lines, it's 1549 Note that using ":sort" with ":global" doesn't sort the matching lines, it's
1547 quite useless. 1550 quite useless.
1548 1551
1549 The details about sorting depend on the library function used. There is no 1552 The details about sorting depend on the library function used. There is no