diff runtime/doc/eval.txt @ 11828:5a07a3ff56c1 v8.0.0794

patch 8.0.0794: checking translations fails with multiple NL commit https://github.com/vim/vim/commit/9966b21a57277986217aa28237d6c247ebd060d7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jul 28 16:46:57 2017 +0200 patch 8.0.0794: checking translations fails with multiple NL Problem: The script to check translations fails if there is more than one NL in one line. Solution: Count the number of NL characters. Make count() accept a string.
author Christian Brabandt <cb@256bit.org>
date Fri, 28 Jul 2017 17:00:05 +0200
parents 21f3930dfe6e
children 1c65cad8b967
line wrap: on
line diff
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt*	For Vim version 8.0.  Last change: 2017 Jul 22
+*eval.txt*	For Vim version 8.0.  Last change: 2017 Jul 28
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -3255,11 +3255,16 @@ cosh({expr})						*cosh()*
 		
 count({comp}, {expr} [, {ic} [, {start}]])			*count()*
 		Return the number of times an item with value {expr} appears
-		in |List| or |Dictionary| {comp}.
+		in |String|, |List| or |Dictionary| {comp}.
+
 		If {start} is given then start with the item with this index.
 		{start} can only be used with a |List|.
+
 		When {ic} is given and it's |TRUE| then case is ignored.
 
+		When {comp} is a string then the number of not overlapping
+		occurences of {expr} is returned.
+
 
 							*cscope_connection()*
 cscope_connection([{num} , {dbpath} [, {prepend}]])