Re: [vim/vim] Impossible to pass non-UTF-8 strings from vim to Python 3 (#1053)

2016-09-12 Thread Christian Brabandt
Hi Björn! On So, 11 Sep 2016, Björn Linse wrote: > On Sunday, September 11, 2016 at 6:14:14 PM UTC+2, Björn Linse wrote: > > 615351832d75df3dfbc3f22694e675583e0b325d > BTW, something is wrong with the github <-> vim-dev bridge, this > comment (and the edited version with the correct link below) i

Re: [vim/vim] Impossible to pass non-UTF-8 strings from vim to Python 3 (#1053)

2016-09-12 Thread Björn Linse
On Monday, September 12, 2016 at 10:57:39 AM UTC+2, Christian Brabandt wrote: > Hi Björn! > > On So, 11 Sep 2016, Björn Linse wrote: > > > On Sunday, September 11, 2016 at 6:14:14 PM UTC+2, Björn Linse wrote: > > > 615351832d75df3dfbc3f22694e675583e0b325d > > BTW, something is wrong with the gith

[patch] A small correction to version8.txt

2016-09-12 Thread Kazunobu Kuriyama
Hi Bram, The attached patch is very tiny and self-explanatory. Please give it a glance. Thanks, Kazunobu -- -- 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.ph

should sh.vim update both 'syn iskeyword' and 'iskeyword' for bash scripts?

2016-09-12 Thread Kevin Ushey
syntax/sh.vim currently has (from https://github.com/vim/vim/blob/e1c8c7a6742be6072290f9aa54ae358060d9c42f/runtime/syntax/sh.vim#L91-L98): " set up the syntax-highlighting iskeyword if has("patch-7.4.1142") if exists("b:is_bash") exe "syn iskeyword ".&iskeyword.",-,:" else exe "syn iskeywor

Re: [patch] A small correction to version8.txt

2016-09-12 Thread Bram Moolenaar
Kazunobu Kuriyama wrote: > The attached patch is very tiny and self-explanatory. Please give it a > glance. Thanks. -- hundred-and-one symptoms of being an internet addict: 239. You think "surfing" is something you do on dry land. /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moole

Re: [vim/vim] Impossible to pass non-UTF-8 strings from vim to Python 3 (#1053)

2016-09-12 Thread Christian Brabandt
Am 2016-09-12 11:09, schrieb Björn Linse: On Monday, September 12, 2016 at 10:57:39 AM UTC+2, Christian Brabandt wrote: On So, 11 Sep 2016, Björn Linse wrote: > On Sunday, September 11, 2016 at 6:14:14 PM UTC+2, Björn Linse wrote: > > 615351832d75df3dfbc3f22694e675583e0b325d > BTW, something is

Patch 7.4.2365

2016-09-12 Thread Bram Moolenaar
Patch 7.4.2365 Problem:Needless line break. Confusing directory name. Solution: Remove line break. Prepend "../" to "tools". Files: Makefile, src/normal.c *** ../vim-7.4.2364/Makefile2016-09-06 22:06:31.317534196 +0200 --- Makefile2016-09-06 22:51:30.614231758 +0200 *

Re: Patch 7.4.2364

2016-09-12 Thread Ozaki Kiichi
> ! let s:flaky = [ > ! \ 'Test_reltime()', > ! \ 'Test_nb_basic()', > ! \ 'Test_communicate()' > ! \ 'Test_pipe_through_sort_some()' > ! \ ] There is a missing comma after 'Test_communicate()'. -- -- You received this message from the "vim_dev" maillist. Do not to

Re: should sh.vim update both 'syn iskeyword' and 'iskeyword' for bash scripts?

2016-09-12 Thread Bram Moolenaar
Kevin Ushey wrote: > syntax/sh.vim currently has (from > https://github.com/vim/vim/blob/e1c8c7a6742be6072290f9aa54ae358060d9c42f/runtime/syntax/sh.vim#L91-L98): > > " set up the syntax-highlighting iskeyword > if has("patch-7.4.1142") > if exists("b:is_bash") > exe "syn iskeyword ".&iskeywo

Re: Vim 7.4y ready for beta testing

2016-09-12 Thread Ken Takata
Hi Bram, 2016/9/7 Wed 6:02:38 UTC+9 Bram Moolenaar wrote: > Hello Vim users! > > > Announcing: Vim (Vi IMproved) version 7.4y BETA > > > This is the second BETA release for Vim 8. Same files as 7.4x but with > a few more changes. > > Please report anything that isn't right. That includes a

Patch 7.4.2366

2016-09-12 Thread Bram Moolenaar
Patch 7.4.2366 Problem:MS-Windows gvim.exe does not have DirectX support. Solution: Add the DIRECTX to the script. Files: src/bigvim.bat *** ../vim-7.4.2365/src/bigvim.bat 2016-09-06 23:23:46.389460230 +0200 --- src/bigvim.bat 2016-09-12 13:17:03.373009260 +0200

Re: Vim 7.4y ready for beta testing

2016-09-12 Thread Bram Moolenaar
Ken Takata wrote: > 2016/9/7 Wed 6:02:38 UTC+9 Bram Moolenaar wrote: > > Hello Vim users! > > > > > > Announcing: Vim (Vi IMproved) version 7.4y BETA > > > > > > This is the second BETA release for Vim 8. Same files as 7.4x but with > > a few more changes. > > > > Please report anything th

Patch 7.4.2367

2016-09-12 Thread Bram Moolenaar
Patch 7.4.2367 (after 7.4.2364) Problem:Test runner misses a comma. Solution: Add the comma. Files: src/testdir/runtest.vim *** ../vim-7.4.2366/src/testdir/runtest.vim 2016-09-11 16:48:46.936005143 +0200 --- src/testdir/runtest.vim 2016-09-12 13:29:37.718637773 +0200

Re: Patch 7.4.2364

2016-09-12 Thread Bram Moolenaar
Ozaki Kiichi wrote: > > ! let s:flaky = [ > > ! \ 'Test_reltime()', > > ! \ 'Test_nb_basic()', > > ! \ 'Test_communicate()' > > ! \ 'Test_pipe_through_sort_some()' > > ! \ ] > > There is a missing comma after 'Test_communicate()'. Thanks. Strange that this went un

Re: Vim 7.4y ready for beta testing

2016-09-12 Thread Ken Takata
Hi Bram, 2016/9/12 Mon 20:19:46 UTC+9 Bram Moolenaar wrote: > Ken Takata wrote: > > > 2016/9/7 Wed 6:02:38 UTC+9 Bram Moolenaar wrote: > > > Hello Vim users! > > > > > > > > > Announcing: Vim (Vi IMproved) version 7.4y BETA > > > > > > > > > This is the second BETA release for Vim 8. Same f

Vim 8.0 released!

2016-09-12 Thread Bram Moolenaar
Hello Vim users! Announcing: Vim (Vi IMproved) version 8.0 This the first major Vim release in ten years. There are interesting new features, many small improvements and lots of bug fixes. Among the new features are: - Asynchronous I/O support, channels, JSON - Jobs - Timers - Partials, La

Re: Vim 8.0 released!

2016-09-12 Thread h_east
Hi Bram and Vim developers and users! Congrats!! I'll continue to write a patch in the future :-) -- Best regards, Hirohito Higashi (a.k.a. h_east) -- -- 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 informa

Re: [patch][win32] Remove old codes for Win9x etc.

2016-09-12 Thread Ken Takata
Hi Bram, 2016/3/9 Wed 23:33:28 UTC+9 Ken Takata wrote: > Hi Bram, > > 2016/3/9 Wed 19:03:00 UTC+9 Bram Moolenaar wrote: > > Ken Takata wrote: > > > > > 2016/3/8 Tue 23:43:09 UTC+9 Ken Takata wrote: > > > > Hi, > > > > > > > > As the next release will drop support for old Windows before XP, we c

Re: [patch][win32] Remove old codes for Win9x etc.

2016-09-12 Thread Bram Moolenaar
Ken Takata wrote: > 2016/3/9 Wed 23:33:28 UTC+9 Ken Takata wrote: > > Hi Bram, > > > > 2016/3/9 Wed 19:03:00 UTC+9 Bram Moolenaar wrote: > > > Ken Takata wrote: > > > > > > > 2016/3/8 Tue 23:43:09 UTC+9 Ken Takata wrote: > > > > > Hi, > > > > > > > > > > As the next release will drop support f

Patch 8.0.0001

2016-09-12 Thread Bram Moolenaar
Patch 8.0.0001 Problem:Intro screen still mentions version7. (Paul) Solution: Change it to version8. Files: src/version.c *** ../vim-8.0./src/version.c 2016-09-12 13:37:07.0 +0200 --- src/version.c 2016-09-12 16:09:53.005729023 +0200 *** *** 17,24 *

Test_get_buf_options fails on ppc64

2016-09-12 Thread Ismail Donmez
Hi, on openSUSE Linux PPC64 I see one failure with Test_get_buf_options: >From test_bufwintabinfo.vim: Executing Test_get_buf_options() Executing Test_get_win_options() Executing Test_getbufwintabinfo() Executed 3 tests 1 FAILED: Found errors in Test_get_buf_options(): function RunTheTest[9]..Tes

Patch 8.0.0002

2016-09-12 Thread Bram Moolenaar
Patch 8.0.0002 Problem:The netrw plugin does not work. Solution: Make it accept version 8.0. Files: runtime/autoload/netrw.vim *** ../vim-8.0.0001/runtime/autoload/netrw.vim 2016-04-20 22:23:51.0 +0200 --- runtime/autoload/netrw.vim 2016-09-12 16:28:24.426361650 +0200 *

Re: Patch 8.0.0002

2016-09-12 Thread Bram Moolenaar
I wrote: > Patch 8.0.0002 > Problem:The netrw plugin does not work. > Solution: Make it accept version 8.0. > Files: runtime/autoload/netrw.vim That's unfortunate. Didn't get caught in testing because the problem is triggered by the updated version number. I'll consider updating the

Re: Test_get_buf_options fails on ppc64

2016-09-12 Thread Bram Moolenaar
Ismail Donmez wrote: > on openSUSE Linux PPC64 I see one failure with Test_get_buf_options: > > From test_bufwintabinfo.vim: > Executing Test_get_buf_options() > Executing Test_get_win_options() > Executing Test_getbufwintabinfo() > Executed 3 tests > 1 FAILED: > Found errors in Test_get_buf_opt

Re: Vim 8.0 released!

2016-09-12 Thread skywind3000
Bram Moolenaar wrote: > Hello Vim users! > > > Announcing: Vim (Vi IMproved) version 8.0 > > > This the first major Vim release in ten years. There are interesting > new features, many small improvements and lots of bug fixes. At last ! Hope package maintainers of debian / ubuntu can update

Re: Vim 8.0 released!

2016-09-12 Thread LCD 47
On 12 September 2016, Bram Moolenaar wrote: > > > Hello Vim users! > > > Announcing: Vim (Vi IMproved) version 8.0 [...] Congratulations! /lcd -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For mor

Re: Vim 8.0 released!

2016-09-12 Thread Christian J. Robinson
I just updated. Things like ":intro" and ":version" show 8.0, but ":echo v:version" still shows "704". - Christian -- Christian J. Robinson Expecting the world to treat you fairly because you are a good person is a little like expecting the bull not to attack you because you are a vegetari

Re: Vim 8.0 released!

2016-09-12 Thread skywind3000
skywind3000 wrote: > Bram Moolenaar wrote: > > Hello Vim users! > > > > > > Announcing: Vim (Vi IMproved) version 8.0 > > > > > > This the first major Vim release in ten years. There are interesting > > new features, many small improvements and lots of bug fixes. > > At last ! > Hope package

Re: Patch 8.0.0002

2016-09-12 Thread Bram Moolenaar
I wrote: > Patch 8.0.0002 > Problem:The netrw plugin does not work. > Solution: Make it accept version 8.0. > Files: runtime/autoload/netrw.vim Since this prevented editing directories, I have updated the Vim 8 distribution files to this patch level. -- Emacs is a nice OS - but it l

Re: Vim 8.0 released!

2016-09-12 Thread Christian J. Robinson
On Mon, 12 Sep 2016, Bram Moolenaar wrote: Christian Robinson wrote: I just updated. Things like ":intro" and ":version" show 8.0, but ":echo v:version" still shows "704". If v:version says 704, then it's 7.4. Sounds like you are running an older binary with newer runtime files. I am not.

Re: Vim 8.0 released!

2016-09-12 Thread Bram Moolenaar
Christian Robinson wrote: > I just updated. Things like ":intro" and ":version" show 8.0, but > ":echo v:version" still shows "704". If v:version says 704, then it's 7.4. Sounds like you are running an older binary with newer runtime files. -- hundred-and-one symptoms of being an internet ad

Re: Test_get_buf_options fails on ppc64

2016-09-12 Thread James McCoy
On Sep 12, 2016 10:36, "Bram Moolenaar" wrote: > > > Ismail Donmez wrote: > > > on openSUSE Linux PPC64 I see one failure with Test_get_buf_options: > > > > From test_bufwintabinfo.vim: > > Executing Test_get_buf_options() > > Executing Test_get_win_options() > > Executing Test_getbufwintabinfo()

Re: Vim 8.0 released!

2016-09-12 Thread Christian J. Robinson
On Mon, 12 Sep 2016, Christian J. Robinson wrote: On Mon, 12 Sep 2016, Bram Moolenaar wrote: Christian Robinson wrote: I just updated. Things like ":intro" and ":version" show 8.0, but ":echo v:version" still shows "704". If v:version says 704, then it's 7.4. Sounds like you are running a

Re: Vim 8.0 released!

2016-09-12 Thread Bram Moolenaar
Christian Robinson wrote: > On Mon, 12 Sep 2016, Bram Moolenaar wrote: > > > Christian Robinson wrote: > > > >> I just updated. Things like ":intro" and ":version" show 8.0, but > >> ":echo v:version" still shows "704". > > > > If v:version says 704, then it's 7.4. > > Sounds like you are runni

Patch 8.0.0003

2016-09-12 Thread Bram Moolenaar
Patch 8.0.0003 Problem:getwinvar() returns wrong Value of boolean and number options, especially non big endian systems. (James McCoy) Solution: Cast the pointer to long or int. (closes #1060) Files: src/option.c, src/testdir/test_bufwintabinfo.vim *** ../vim-8.0.0002/src/

Re: [vim/vim] Cname for vim.org to point to www.vim.org (#1062)

2016-09-12 Thread Tony Mechelynck
Some browsers, including by default Firefox and SeaMonkey, will look up www.something.tld if something.tld isn't found. This feature can be disabled by means of a preference, however, so it may or may not be a problem for you. For me it isn't. Best regards, Tony. On Mon, Sep 12, 2016 at 11:10 PM,

Possible problem when running a job immediately followed by a sleep

2016-09-12 Thread Santiago Alejandro Agüero
While I was trying to write some vim code for testing a (async) functionality for Neomake plugin, I've noticed the following scenario: - Having the following shell script (with errors): #!/bin/sh a='$var' foo( - And the next vim test code: function! StartJob() let g:job = job_start(['/

[patch] Trivial :help syn-iskeyword fix

2016-09-12 Thread Doug Kearns
Please see attached. Regards, Doug -- -- 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 Goog

Re: Vim 8.0 released!

2016-09-12 Thread Wei Huang
On Monday, September 12, 2016 at 8:53:54 PM UTC+8, Bram Moolenaar wrote: > Hello Vim users! > > > Announcing: Vim (Vi IMproved) version 8.0 > > > This the first major Vim release in ten years. There are interesting > new features, many small improvements and lots of bug fixes. > Congratulat