mirror of
https://github.com/neovim/neovim.git
synced 2026-09-14 18:02:15 +00:00
Problem: When using :global clipboard isn't set correctly.
Solution: Set "clip_unnamed_saved" instead of "clip_unnamed". (Christian
Brabandt, closes vim/vim#6203, closes vim/vim#6198)
07188fc5ef
32 lines
750 B
VimL
32 lines
750 B
VimL
source check.vim
|
|
|
|
func Test_yank_put_clipboard()
|
|
new
|
|
call setline(1, ['a', 'b', 'c'])
|
|
set clipboard=unnamed
|
|
g/^/normal yyp
|
|
call assert_equal(['a', 'a', 'b', 'b', 'c', 'c'], getline(1, 6))
|
|
|
|
set clipboard&
|
|
bwipe!
|
|
endfunc
|
|
|
|
func Test_global_set_clipboard()
|
|
CheckFeature clipboard_working
|
|
new
|
|
set clipboard=unnamedplus
|
|
let @+='clipboard' | g/^/set cb= | let @" = 'unnamed' | put
|
|
call assert_equal(['','unnamed'], getline(1, '$'))
|
|
set clipboard&
|
|
bwipe!
|
|
endfunc
|
|
|
|
func Test_nested_global()
|
|
new
|
|
call setline(1, ['nothing', 'found', 'found bad', 'bad'])
|
|
call assert_fails('g/found/3v/bad/s/^/++/', 'E147')
|
|
g/found/v/bad/s/^/++/
|
|
call assert_equal(['nothing', '++found', 'found bad', 'bad'], getline(1, 4))
|
|
bwipe!
|
|
endfunc
|