summaryrefslogtreecommitdiffstats
path: root/runtime/doc/change.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-05-31 22:14:58 +0000
committerBram Moolenaar <Bram@vim.org>2005-05-31 22:14:58 +0000
commit5c06f8b043e413d887ceb1af850ac7ba5034151e (patch)
tree0f7254afd8be58a253c6c73dc9e4711b2ad5bd3e /runtime/doc/change.txt
parenta04f10b6066952725b53c3bda9ce259ab29a5e3b (diff)
updated for version 7.0077
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r--runtime/doc/change.txt16
1 files changed, 15 insertions, 1 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index 0164054281..a6eed40155 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -1,4 +1,4 @@
-*change.txt* For Vim version 7.0aa. Last change: 2005 May 22
+*change.txt* For Vim version 7.0aa. Last change: 2005 May 31
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1494,8 +1494,20 @@ found here: |sort()|.
With [i] case is ignored.
+ With [n] sorting is done on the first decimal number
+ in the line (after a {pattern} match).
+
+ With [x] sorting is done on the first hexadecimal
+ number in the line (after a {pattern} match). A
+ leading "0x" or "0X" is ignored.
+
+ With [o] sorting is done on the first octal number in
+ the line (after a {pattern} match).
+
With [u] only keep the first of a sequence of
identical lines (ignoring case when [i] is used).
+ Note that leading and trailing white space may cause
+ lines to be different.
When /{pattern}/ is specified the text matched with
{pattern} is skipped, so that you sort on what comes
@@ -1509,5 +1521,7 @@ found here: |sort()|.
ignoring the difference between tabs and spaces): >
:sort /.*\%10v/
<
+Note that using ":sort" with ":global" doesn't sort the matching lines, it's
+quite useless.
vim:tw=78:ts=8:ft=help:norl: