summaryrefslogtreecommitdiffstats
path: root/runtime/doc/change.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-04-09 21:54:49 +0000
committerBram Moolenaar <Bram@vim.org>2006-04-09 21:54:49 +0000
commitc6fe919573e82727a7de014daab122ffc5001854 (patch)
tree237b3cac7ceeee2c16d574a99f1c37e9bd94ea53 /runtime/doc/change.txt
parent61660eadced09491ef8ee0a7d4af73cc75fdc349 (diff)
updated for version 7.0c13v7.0c13
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r--runtime/doc/change.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index abb528ee11..4a321758e1 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.