Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Kazunobu Kuriyama
2017-03-18 6:51 GMT+09:00 Bram Moolenaar : > > Kazunobu Kuriyama wrote: > > > The tests are done with the help of one or more command-line utilities > > handling the system clipboard. More specifically, xsel(1) for X11, or > > pbcopy(1) and pbpaste(1) for macOS. > > > > The idea is very similar t

Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Tony Mechelynck
On Fri, Mar 17, 2017 at 10:51 PM, Bram Moolenaar wrote: > On my system I don't have xsel. I'm afraid that this probably means > that most people don't have it. On my openSUSE Leap 42.2 system, xsel is not installed by default, but it is available on the OSS repository. If you're running on SUSE

Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Bram Moolenaar
Kazunobu Kuriyama wrote: > The tests are done with the help of one or more command-line utilities > handling the system clipboard. More specifically, xsel(1) for X11, or > pbcopy(1) and pbpaste(1) for macOS. > > The idea is very similar to the +-register tests I proposed recently; > exchanging

Re: python can not access predefined variable

2017-03-17 Fir de Conversatie Yggdroot Chen
在 2017年3月17日星期五 UTC+8下午6:19:04,ZyX写道: > 2017-03-17 12:58 GMT+03:00 Yggdroot Chen : > > One local buffer variable is predefined: > > *b:changedtick* *changetick* > > > > But I can't access it through this: > > > > :py print vim.current.buffer.vars["changedtick

Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Christian Brabandt
On Fr, 17 Mär 2017, Kazunobu Kuriyama wrote: > Thank you very much for the prompt response, and, not to mention, your hard > work for the community! I really appreciate those kind words. But it's not me alone, there are so many people working hard for making Vim better like Dominique, Ken and t

Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Kazunobu Kuriyama
2017-03-17 20:54 GMT+09:00 Christian Brabandt : > Hi Kazunobu! > > On Fr, 17 Mär 2017, Kazunobu Kuriyama wrote: > > > Hopefully, the X11 of Travis CI tests has xsel. > > Well we can install it: > diff --git a/.travis.yml b/.travis.yml > index e8249d5..deef52b 100644 > --- a/.travis.yml > +++ b/.t

Re: [patch] *-register tests

2017-03-17 Fir de Conversatie Christian Brabandt
Hi Kazunobu! On Fr, 17 Mär 2017, Kazunobu Kuriyama wrote: > Hopefully,  the X11 of Travis CI tests has xsel. Well we can install it: diff --git a/.travis.yml b/.travis.yml index e8249d5..deef52b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -73,6 +73,7 @@ addons: - liblua5.1-0-dev

[patch] *-register tests

2017-03-17 Fir de Conversatie Kazunobu Kuriyama
Hi, The tests are done with the help of one or more command-line utilities handling the system clipboard. More specifically, xsel(1) for X11, or pbcopy(1) and pbpaste(1) for macOS. The idea is very similar to the +-register tests I proposed recently; exchanging a piece of text between vim and th

Re: python can not access predefined variable

2017-03-17 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2017-03-17 12:58 GMT+03:00 Yggdroot Chen : > One local buffer variable is predefined: > *b:changedtick* *changetick* > > But I can't access it through this: > > :py print vim.current.buffer.vars["changedtick"] > > I think this is a bug! > > Perhaps there are

python can not access predefined variable

2017-03-17 Fir de Conversatie Yggdroot Chen
One local buffer variable is predefined: *b:changedtick* *changetick* But I can't access it through this: :py print vim.current.buffer.vars["changedtick"] I think this is a bug! Perhaps there are other predefined variables which have this issue. -- --