Ondřej Súkup
029b9a1d07
- Updated to version 8.1.1137, fixes the following problems - refreshed disable-unreliable-tests.patch * Cannot get all the information about current completion. * Source README file doesn't look nice on github. * Issue templates are not good enough. * Cannot get composing characters from the screen. * Extending sign and foldcolumn below the text is confusing. * Space in number column is on wrong side with 'rightleft' set. * Python test doesn't wipe out hidden buffer. * Function reference count wrong in Python code. * File for Insert mode is much too big. * reg_executing() is reset by calling input(). * When 'listchars' is set a composing char on a space is wrong. * No need for a separate ScreenLinesUtf8() test function. * When a screendump test fails, moving the file is a hassle. current code page. * "Conceal" match is mixed up with 'hlsearch' match. * Cannot delete a match from another window. (Paul Jolly) * Compiler warning for possibly uninitialized variable. (Tony Mechelynck) * Too many curly braces. * tag stack is incorrect after CTRL-T and then :tag * Height of quickfix window not retained with vertical split. * Tutor does not check $LC_MESSAGES. * Setting 'guifont' when maximized resizes the Vim window. When 'guioptions' contains "k" gvim may open with a tiny window. * Support for outdated tags format slows down tag parsing. * Long line in tags file causes error. * Quickfix code duplication. * The do_tag() function is too long. * Tag file without trailing newline no longer works. (Marco Hinz) OBS-URL: https://build.opensuse.org/request/show/692234 OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=544
74 lines
2.2 KiB
Diff
74 lines
2.2 KiB
Diff
Index: vim-8.1.1137/src/testdir/test_alot.vim
|
|
===================================================================
|
|
--- vim-8.1.1137.orig/src/testdir/test_alot.vim
|
|
+++ vim-8.1.1137/src/testdir/test_alot.vim
|
|
@@ -37,14 +37,12 @@ source test_join.vim
|
|
source test_jumps.vim
|
|
source test_lambda.vim
|
|
source test_lispwords.vim
|
|
-source test_mapping.vim
|
|
source test_match.vim
|
|
source test_menu.vim
|
|
source test_messages.vim
|
|
source test_modeline.vim
|
|
source test_move.vim
|
|
source test_partial.vim
|
|
-source test_popup.vim
|
|
source test_put.vim
|
|
source test_recover.vim
|
|
source test_reltime.vim
|
|
@@ -62,7 +60,6 @@ source test_tabpage.vim
|
|
source test_tagcase.vim
|
|
source test_tagjump.vim
|
|
source test_taglist.vim
|
|
-source test_timers.vim
|
|
source test_true_false.vim
|
|
source test_unlet.vim
|
|
source test_virtualedit.vim
|
|
Index: vim-8.1.1137/src/testdir/Make_all.mak
|
|
===================================================================
|
|
--- vim-8.1.1137.orig/src/testdir/Make_all.mak
|
|
+++ vim-8.1.1137/src/testdir/Make_all.mak
|
|
@@ -190,7 +190,6 @@ NEW_TESTS = \
|
|
test_netbeans \
|
|
test_normal \
|
|
test_number \
|
|
- test_options \
|
|
test_packadd \
|
|
test_partial \
|
|
test_paste \
|
|
@@ -404,11 +403,8 @@ NEW_TESTS_RES = \
|
|
test_tcl.res \
|
|
test_termencoding.res \
|
|
test_termcodes.res \
|
|
- test_terminal.res \
|
|
- test_terminal_fail.res \
|
|
test_textformat.res \
|
|
test_textobjects.res \
|
|
- test_textprop.res \
|
|
test_undo.res \
|
|
test_user_func.res \
|
|
test_usercommands.res \
|
|
Index: vim-8.1.1137/src/testdir/Makefile
|
|
===================================================================
|
|
--- vim-8.1.1137.orig/src/testdir/Makefile
|
|
+++ vim-8.1.1137/src/testdir/Makefile
|
|
@@ -36,8 +36,6 @@ SCRIPTS = $(SCRIPTS_ALL) \
|
|
# Explicit dependencies.
|
|
test49.out: test49.vim
|
|
|
|
-test_options.res test_alot.res: opt_test.vim
|
|
-
|
|
SCRIPTS_BENCH = bench_re_freeze.out
|
|
|
|
.SUFFIXES: .in .out .res .vim
|
|
@@ -166,8 +164,5 @@ test_gui_init.res: test_gui_init.vim
|
|
$(RUN_VIMTEST) -u gui_preinit.vim -U gui_init.vim $(NO_PLUGINS) -S runtest.vim $<
|
|
@rm vimcmd
|
|
|
|
-opt_test.vim: ../option.c gen_opt_test.vim
|
|
- $(VIMPROG) -u NONE -S gen_opt_test.vim --noplugin --not-a-term ../option.c
|
|
-
|
|
test_xxd.res:
|
|
XXD=$(XXDPROG); export XXD; $(RUN_VIMTEST) $(NO_INITS) -S runtest.vim test_xxd.vim
|