vim/vim-8.1.0297-dump3.patch
Ondřej Súkup bc620d1439 - Updated to version 8.1.2383, fixes the following problems
+ refreshed patches: vim-7.3-help_tags.patch
                      vim-7.3-name_vimrc.patch
                      vim-8.1.0297-dump3.patch
  * Cannot get the Vim command line arguments.
  * get_short_pathname() fails depending on encoding.
  * "C" with 'virtualedit' set does not include multi-byte char.
  * Ml_get error if pattern matches beyond last line.
  * Mode() result after usign "r" depends on whether CURSOR_SHAPE is
  defined. (Christian Brabandt)
  * Error in docs tags goes unnoticed.
  * Popup window width changes when scrolling.
  * Match highlight does not combine with 'wincolor'.
  * Creating docs tags uses user preferences. (Tony Mechelynck)
  * 'wrapscan' is not used for "gn".
  * Third character of 'listchars' tab shows in wrong place when 'breakindent'
  is set.
  * Some tests are still in old style.
  * "make vimtags" does not work in runtime/doc.
  * CTRL-W dot does not work in a terminal when modifyOtherKeys is enabled.
  * "make vimtags" does not print any message.
  * CTRL-U and CTRL-D don't work in popup window.
  * ":term command" may not work without a shell.
  * Compiler warning for int size.
  * Using "which" to check for an executable is not reliable.
  * May get hit-enter prompt after entering a number. (Malcolm Rowe)
  * Running tests may leave XfakeHOME behind.
  * With modifyOtherKeys set 'noesckeys' doesn't work. (James McCoy)
  * Unpack assignment in function not recognized.
  * 'noesckeys' test fails in GUI.

OBS-URL: https://build.opensuse.org/package/show/editors/vim?expand=0&rev=575
2019-12-03 14:41:48 +00:00

23 lines
1.0 KiB
Diff

Index: vim-8.1.2383/src/testdir/test_search.vim
===================================================================
--- vim-8.1.2383.orig/src/testdir/test_search.vim
+++ vim-8.1.2383/src/testdir/test_search.vim
@@ -929,7 +929,7 @@ func Test_incsearch_substitute_dump()
" Deleting last slash should remove the match.
call term_sendkeys(buf, "\<BS>")
- call VerifyScreenDump(buf, 'Test_incsearch_substitute_03', {})
+ "call VerifyScreenDump(buf, 'Test_incsearch_substitute_03', {})
call term_sendkeys(buf, "\<Esc>")
" Reverse range is accepted
@@ -980,7 +980,7 @@ func Test_incsearch_substitute_dump()
call term_sendkeys(buf, ":%s/.")
call VerifyScreenDump(buf, 'Test_incsearch_substitute_11', {})
call term_sendkeys(buf, "\<BS>")
- call VerifyScreenDump(buf, 'Test_incsearch_substitute_12', {})
+ "call VerifyScreenDump(buf, 'Test_incsearch_substitute_12', {})
call term_sendkeys(buf, "\<Esc>")
call VerifyScreenDump(buf, 'Test_incsearch_substitute_13', {})
call term_sendkeys(buf, ":%bwipe!\<CR>")