diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-09 21:54:49 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-09 21:54:49 +0000 |
commit | c6fe919573e82727a7de014daab122ffc5001854 (patch) | |
tree | 237b3cac7ceeee2c16d574a99f1c37e9bd94ea53 /runtime/doc/change.txt | |
parent | 61660eadced09491ef8ee0a7d4af73cc75fdc349 (diff) | |
download | vim-git-c6fe919573e82727a7de014daab122ffc5001854.tar.gz |
updated for version 7.0c13v7.0c13
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r-- | runtime/doc/change.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index abb528ee1..4a321758e 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.0c. Last change: 2006 Mar 16 +*change.txt* For Vim version 7.0c. Last change: 2006 Apr 09 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1542,6 +1542,9 @@ found here: |sort()|. < To sort on the text at virtual column 10 (thus ignoring the difference between tabs and spaces): > :sort /.*\%10v/ +< To sort on the first number in the line, no matter + what is in front of it: > + :sort /.*\ze\d/ < Note that using ":sort" with ":global" doesn't sort the matching lines, it's quite useless. |