view src/testdir/test_registers.vim @ 11682:b9928ef8632f v8.0.0724

patch 8.0.0724: the message for yanking doesn't indicate the register commit https://github.com/vim/vim/commit/e45deb79978677cb41f1477ba4140bccff658fd1 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 16 17:56:16 2017 +0200 patch 8.0.0724: the message for yanking doesn't indicate the register Problem: The message for yanking doesn't indicate the register. Solution: Show the register name in the "N lines yanked" message. (Lemonboy, closes #1803, closes #1809)
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Jul 2017 18:00:04 +0200
parents
children 536874138ecd
line wrap: on
line source


func Test_yank_shows_register()
    enew
    set report=0
    call setline(1, ['foo', 'bar'])
    " Line-wise
    exe 'norm! yy'
    call assert_equal('1 line yanked', v:statusmsg)
    exe 'norm! "zyy'
    call assert_equal('1 line yanked into "z', v:statusmsg)
    exe 'norm! yj'
    call assert_equal('2 lines yanked', v:statusmsg)
    exe 'norm! "zyj'
    call assert_equal('2 lines yanked into "z', v:statusmsg)

    " Block-wise
    exe "norm! \<C-V>y"
    call assert_equal('block of 1 line yanked', v:statusmsg)
    exe "norm! \<C-V>\"zy"
    call assert_equal('block of 1 line yanked into "z', v:statusmsg)
    exe "norm! \<C-V>jy"
    call assert_equal('block of 2 lines yanked', v:statusmsg)
    exe "norm! \<C-V>j\"zy"
    call assert_equal('block of 2 lines yanked into "z', v:statusmsg)

    bwipe!
endfunc