summaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-07-04 16:43:17 +0200
committerBram Moolenaar <Bram@vim.org>2014-07-04 16:43:17 +0200
commit8bb1c3e53ef0ee259cfa5f9b3a3a91ec1fa90fb0 (patch)
treeafa4f7ec878974cdd044fb3029dbd96e66edeb88 /runtime/doc/eval.txt
parent9f4fe7c4c3246d6fd1daa1c476c2a0686b905f15 (diff)
downloadvim-8bb1c3e53ef0ee259cfa5f9b3a3a91ec1fa90fb0.zip
Updated runtime files. Overhauled HTML indent script.
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index c61ac07f4..42cf14cbb 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.4. Last change: 2014 Jun 25
+*eval.txt* For Vim version 7.4. Last change: 2014 Jul 02
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -5651,6 +5651,11 @@ sort({list} [, {func} [, {dict}]]) *sort()* *E702*
{dict} is for functions with the "dict" attribute. It will be
used to set the local variable "self". |Dictionary-function|
+ The sort is stable, items which compare equal (as number or as
+ string) will keep their relative position. E.g., when sorting
+ on numbers, text strings will sort next to eachother, in the
+ same order as they were originally.
+
Also see |uniq()|.
Example: >