We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e59ea5 commit 95afae6Copy full SHA for 95afae6
2 files changed
src/testdir/test_spell_utf8.vim
@@ -779,7 +779,12 @@ func Test_no_crash_with_weird_text()
779
780
END
781
call setline(1, lines)
782
- exe "%norm \<C-v>ez=>\<C-v>wzG"
+ try
783
+ exe "%norm \<C-v>ez=>\<C-v>wzG"
784
+ catch /E1280:/
785
+ let caught = 'yes'
786
+ endtry
787
+ call assert_equal('yes', caught)
788
789
bwipe!
790
endfunc
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 22,
740
/**/
741
21,
742
0 commit comments