Merge #10794 from janlazo/vim-8.1.1857

vim-patch:8.1.{1857,1858,1860}
This commit is contained in:
Justin M. Keyes 2019-08-17 08:49:05 +02:00 committed by GitHub
commit e2ccf47b5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -280,6 +280,7 @@ endif
let s:flaky_tests = [
\ 'Test_cursorhold_insert()',
\ 'Test_exit_callback_interval()',
\ 'Test_map_timeout_with_timer_interrupt()',
\ 'Test_oneshot()',
\ 'Test_out_cb()',
\ 'Test_paused()',

View File

@ -229,6 +229,12 @@ func Test_map_meta_quotes()
iunmap <M-">
endfunc
func Test_map_meta_multibyte()
imap <M-á> foo
call assert_match('i <M-á>\s*foo', execute('imap'))
iunmap <M-á>
endfunc
func Test_abbr_after_line_join()
new
abbr foo bar
@ -282,7 +288,7 @@ func Test_map_timeout_with_timer_interrupt()
let g:val = 0
nnoremap \12 :let g:val = 1<CR>
nnoremap \123 :let g:val = 2<CR>
set timeout timeoutlen=1000
set timeout timeoutlen=200
func ExitCb(job, status)
let g:timer = timer_start(1, {_ -> feedkeys("3\<Esc>", 't')})