* Bram Moolenaar <b...@moolenaar.net> [2018-03-13 15:42 +0100]:

> 
> Christian wrote:
> 
> > On Do, 08 Mär 2018, Bram Moolenaar wrote:
> > 
> > > It is not.  "\<Esc>" becomes a real Esc character, while in
> > > single quotes you get 6 characters.  We need the Esc character for this
> > > test.
> > 
> > I am seeing the same error, when running Vim in a session without access 
> > to the + clipboard. Perhaps we need to make sure, that accessing the 
> > clipboard "should" work:
> > 
> > diff --git a/src/testdir/test_paste.vim b/src/testdir/test_paste.vim
> > index 6450989ec..0f4ecc290 100644
> > --- a/src/testdir/test_paste.vim
> > +++ b/src/testdir/test_paste.vim
> > @@ -67,13 +67,13 @@ func Test_paste_insert_mode()
> >  endfunc
> > 
> >  func Test_paste_clipboard()
> > -  if !has('clipboard')
> > +  if !(has('clipboard') && (has("win32") || exists("$DISPLAY")))
> >      return
> >    endif
> >    let @+ = "nasty\<Esc>:!ls\<CR>command"
> >    new
> >    exe "normal i\<C-R>+\<Esc>"
> > -  call assert_equal("nasty\<Esc>:!ls\<CR>command", getline(1))
> > +  call assert_equal(["nasty\<Esc>:!ls\<CR>command", ""], getline(1,2))
> >    bwipe!
> >  endfunc
> 
> Let's make a function for that, we may need it in other places as well.
> 
> > The reason for the second change in the test is, that when pasting
> > literally does not work, Vim might insert
> > ,----
> > | nasty
> > | mmandc
> > `----
> > 
> > However, don't know, why the '+' register works differently, when
> > there is no access to the clipboard.
> 
> Hmm, there might not be a second line if the test passes.

Thanks Bram and Christian for fixing my issue in 8.0.1604 :-)

Elimar
-- 
  Learned men are the cisterns of knowledge,
  not the fountainheads ;-)

-- 
-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vim_dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Raspunde prin e-mail lui