From adc6e636fea64a432656d747f3979d682c94d6e2 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Mon, 27 Feb 2017 21:02:57 -0500 Subject: vim-patch:7.4.2095 Problem: Man test fails when run with the GUI. Solution: Adjust for different behavior of GUI. Add assert_inrange(). https://github.com/vim/vim/commit/61c04493b00f85d0b97436260a9ef9ab82143b78 Only changes related to assert_inrange() were included, since we have a distinct man plugin. --- src/nvim/eval.lua | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/eval.lua') diff --git a/src/nvim/eval.lua b/src/nvim/eval.lua index fa19ff209e..e3c5981b32 100644 --- a/src/nvim/eval.lua +++ b/src/nvim/eval.lua @@ -29,6 +29,7 @@ return { assert_exception={args={1, 2}}, assert_fails={args={1, 2}}, assert_false={args={1, 2}}, + assert_inrange={args={2, 3}}, assert_match={args={2, 3}}, assert_notequal={args={2, 3}}, assert_notmatch={args={2, 3}}, -- cgit