diff runtime/doc/testing.txt @ 24307:55f458d35292 v8.2.2694

patch 8.2.2694: when 'matchpairs' is empty every character beeps Commit: https://github.com/vim/vim/commit/5b8cabfef7c3707f3e53e13844d90e5a217e1e84 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 2 18:55:57 2021 +0200 patch 8.2.2694: when 'matchpairs' is empty every character beeps Problem: When 'matchpairs' is empty every character beeps. (Marco Hinz) Solution: Bail out when no character in 'matchpairs' was found. (closes #8053) Add assert_nobeep().
author Bram Moolenaar <Bram@vim.org>
date Fri, 02 Apr 2021 19:00:06 +0200
parents 788e10cec9bd
children 5c98ea5f5d6e
line wrap: on
line diff
--- a/runtime/doc/testing.txt
+++ b/runtime/doc/testing.txt
@@ -243,7 +243,8 @@ 3. Assert functions				*assert-functions
 assert_beeps({cmd})					*assert_beeps()*
 		Run {cmd} and add an error message to |v:errors| if it does
 		NOT produce a beep or visual bell.
-		Also see |assert_fails()| and |assert-return|.
+		Also see |assert_fails()|, |assert_nobeep()| and
+		|assert-return|.
 
 		Can also be used as a |method|: >
 			GetCmd()->assert_beeps()
@@ -377,6 +378,14 @@ assert_match({pattern}, {actual} [, {msg
 		Can also be used as a |method|: >
 			getFile()->assert_match('foo.*')
 <
+assert_nobeep({cmd})					*assert_nobeep()*
+		Run {cmd} and add an error message to |v:errors| if it
+		produces a beep or visual bell.
+		Also see |assert_beeps()|.
+
+		Can also be used as a |method|: >
+			GetCmd()->assert_nobeep()
+<
 							*assert_notequal()*
 assert_notequal({expected}, {actual} [, {msg}])
 		The opposite of `assert_equal()`: add an error message to