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 47707f6 commit 2d6c800Copy full SHA for 2d6c800
src/testdir/test_alot.vim
@@ -3,6 +3,7 @@
3
4
source test_backspace_opt.vim
5
source test_lispwords.vim
6
+source test_menu.vim
7
source test_searchpos.vim
8
source test_set.vim
9
source test_sort.vim
src/testdir/test_menu.vim
@@ -0,0 +1,9 @@
1
+" Test that the system menu can be loaded.
2
+
+func Test_load_menu()
+ try
+ source $VIMRUNTIME/menu.vim
+ catch
+ call assert_false(1, 'error while loading menus: ' . v:exception)
+ endtry
+endfunc
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1046,
746
/**/
747
1045,
748
0 commit comments