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.
2 parents c562d61 + 2d6c800 commit 86c5ff6Copy full SHA for 86c5ff6
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
@@ -756,6 +756,8 @@ static char *(features[]) =
756
757
static int included_patches[] =
758
{ /* Add new patch number below this line */
759
+/**/
760
+ 1046,
761
/**/
762
1045,
763
0 commit comments