bug in statusline highlighting

2016-02-02 Fir de Conversatie Christian Brabandt
Hi, here is a bug in the highlighting of the statusline, when using group items: :set laststatus=2 :let ='+foobar+' (shows "+foobar+" -> is okay) :let ='+%(foobar%)+' (shows "+foobar+" -> is okay) :let ='+%(%#ErrorMsg#foobar%)+' (shows "++", everything after the second + with error highlighting

[patch] Uninitialized Variable

2016-02-02 Fir de Conversatie Elias Diem
Hi GCC warns that a variable might be uninitialized. See attached patch. -- Greetings Elias -- -- 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

Re: [vim] Use shiftwidth() instead of in indent/vim.vim (#578)

2016-02-02 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Di, 02 Feb 2016, Takuya Fujiwara wrote: > > > I created the list of vim indent plugin maintainers to summarize current = > status for myself. > > I don't if it is useful, share it here. > > https://docs.google.com/spreadsheets/d/1-HeWlsLC-tJDfuXQjtkZmY5UwXakAuYg8=

Patch 7.4.1242

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1242 (after 7.4.1238) Problem:json_test fails without the eval feature. Solution: Add #ifdef. Files: src/json_test.c *** ../vim-7.4.1241/src/json_test.c 2016-02-02 18:19:52.798743887 +0100 --- src/json_test.c 2016-02-02 19:07:24.345210458 +0100 *** ***

Patch 7.4.1245

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1245 Problem:File missing from distribution. Solution: Add json_test.c. Files: Filelist *** ../vim-7.4.1244/Filelist2016-01-24 20:41:46.514665738 +0100 --- Filelist2016-02-02 20:47:26.746817199 +0100 *** *** 41,46 --- 41,47

Re: [patch] Uninitialized Variable

2016-02-02 Fir de Conversatie Bram Moolenaar
Elias Diem wrote: > GCC warns that a variable might be uninitialized. See > attached patch. The compiler can't figure out that it's OK. I'll include your patch then. -- Nobody will ever need more than 640 kB RAM. -- Bill Gates, 1983 Windows 98 requires 16 MB RAM.

Patch 7.4.1243

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1243 Problem:Compiler warning for uninitialized variable. Solution: Initialize it. (Elias Diem) Files: src/json.c *** ../vim-7.4.1242/src/json.c 2016-02-02 18:19:52.790743971 +0100 --- src/json.c 2016-02-02 19:42:02.747602592 +0100 *** *** 339,345

Re: bug in statusline highlighting

2016-02-02 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > here is a bug in the highlighting of the statusline, when using group > items: > > :set laststatus=2 > :let ='+foobar+' > (shows "+foobar+" > -> is okay) > :let ='+%(foobar%)+' > (shows "+foobar+" > -> is okay) > :let ='+%(%#ErrorMsg#foobar%)+' > (shows "++",

Patch 7.4.1241

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1241 (after 7.4.1238) Problem:Missing change in Makefile due to diff mismatch Solution: Update the list of object files. Files: src/Makefile *** ../vim-7.4.1240/src/Makefile2016-02-02 18:19:52.798743887 +0100 --- src/Makefile2016-02-02 18:19:30.306977252

Re: [vim] why gvim has no icon? (#616)

2016-02-02 Fir de Conversatie Kazunobu Kuriyama
Oh, I thought you didn't like the idea to have our Makefile update other systems' cache files, because my proposed patch for updating mime.cache was placed in the todo list since then. So, I'm rather happy to hear your thoughts. I'll revise my previous patch with configure checks and the icon

Patch 7.4.1246

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1246 Problem:The channel functionality isn't tested. Solution: Add a test using a Python test server. Files: src/channel.c, src/proto/channel.pro, src/testdir/test_channel.vim, src/testdir/test_channel.py, src/testdir/Make_all.mak ***

Patch 7.4.1244

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1244 Problem:The channel functions don't sort together. Solution: Use a common "ch_" prefix. Files: src/eval.c, runtime/doc/eval.txt, runtime/tools/demoserver.py *** ../vim-7.4.1243/src/eval.c 2016-02-02 18:19:52.794743928 +0100 --- src/eval.c 2016-02-02

Re: [Patch] GTK3 GUI

2016-02-02 Fir de Conversatie Kazunobu Kuriyama
Sorry, "7.4.1235" should be "7.4.1236", the latest git version. - Kazunobu 2016-02-02 17:15 GMT+09:00 Kazunobu Kuriyama : > 2016-02-02 16:47 GMT+09:00 Marius Gedminas : > >> On Mon, Feb 01, 2016 at 05:30:43PM +0900, Kazunobu Kuriyama wrote: >> >

Re: [Patch] GTK3 GUI

2016-02-02 Fir de Conversatie Kazunobu Kuriyama
2016-02-02 16:47 GMT+09:00 Marius Gedminas : > On Mon, Feb 01, 2016 at 05:30:43PM +0900, Kazunobu Kuriyama wrote: > > 2016-02-01 16:44 GMT+09:00 Marius Gedminas : > > > The blank text cells are still not being painted -- here's what I see > > > after I :help

Re: timeout for connect()

2016-02-02 Fir de Conversatie tyru
Hi list. On Tue, Feb 2, 2016 at 8:38 PM, Bram Moolenaar wrote: > > Yasuhiro Matsumoto wrote: > >> > > connect() doesn't have timeout. So when server is down, connect() >> > > hangs while 1 or 2 minuts. Below is a patch to add timeout query like >> > > URL. >> > > >> > >

Re: htmlcomplete#CompleteTags() incorrectly returns upper case completion

2016-02-02 Fir de Conversatie Marius Gedminas
On Tue, Feb 02, 2016 at 05:49:13AM -0800, Axel Bender wrote: > Using after " completions ("UL" and "BLOCKQUOTE" in my case) instead of the appropriate > lowercase completions. There are no uppercase tags in the document > (htmlcomplete.vim of

Re: [vim] Use shiftwidth() instead of in indent/vim.vim (#578)

2016-02-02 Fir de Conversatie Christian Brabandt
Hi Takuya! On Di, 02 Feb 2016, Takuya Fujiwara wrote: > I created the list of vim indent plugin maintainers to summarize current > status for myself. > I don't if it is useful, share it here. > https://docs.google.com/spreadsheets/d/1-HeWlsLC-tJDfuXQjtkZmY5UwXakAuYg83z9nz7nl2w/edit?usp=sharing

Re: timeout for connect()

2016-02-02 Fir de Conversatie Bram Moolenaar
Yasuhiro Matsumoto wrote: > > > connect() doesn't have timeout. So when server is down, connect() > > > hangs while 1 or 2 minuts. Below is a patch to add timeout query like > > > URL. > > > > > > connect("localhost:12345?timeout=3") > > > > > >

Re: [patch] Support python3 with demoserver.py

2016-02-02 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > 2016/2/2 Tue 6:01:33 UTC+9 Bram Moolenaar wrote: > > Ken Takata wrote: > > > > > Currently, the runtime/tools/demoserver.py cannot be executed with Python > > > 3. > > > Attached patch enables demoserver.py to be executed with both Python 2 > > > and 3. > > > > Thanks! >

Patch 7.4.1237

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1237 Problem:Can't translate message without adding a line break. Solution: Join the two parts of the message. Files: src/memline.c *** ../vim-7.4.1236/src/memline.c 2016-01-30 18:51:05.240231931 +0100 --- src/memline.c 2016-02-02 12:32:09.955742900 +0100

Re: Update Japanese translations

2016-02-02 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Hi Bram, > > 2016/2/2 Tue 6:35:09 UTC+9 Bram Moolenaar wrote: > > Taro Muraoka wrote: > > > > > Sorry and Thanks > > > > > > I attached updated version and upload it to: > > > https://github.com/vim-jp/lang-ja/releases/tag/20160201 > > > > > > Please replace old one. > >

Diff to silence noise from VS tools

2016-02-02 Fir de Conversatie Mike Williams
Hi, Attached is a diff that suppresses the startup info from various Visual Studio tools used to build VIM. They just add noise to the build log. TTFN Mike -- I try to watch what I eat but my eyes aren't quick enough. -- -- You received this message from the "vim_dev" maillist. Do not

Re: Patch 7.4.1237

2016-02-02 Fir de Conversatie Ken Takata
Hi Bram, 2016/2/2 Tue 20:38:35 UTC+9 Bram Moolenaar wrote: > Patch 7.4.1237 > Problem:Can't translate message without adding a line break. > Solution: Join the two parts of the message. > Files: src/memline.c Thank you. Now the translation becomes easier. Regards, Ken Takata -- --

Patch 7.4.1238

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1238 Problem:Can't handle two messages right after each other. Solution: Find the end of the JSON. Read more when incomplete. Add a C test for the JSON decoding. Files: src/channel.c, src/json.c, src/proto/json.pro, src/eval.c, src/Makefile,

Patch 7.4.1239

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1239 Problem:JSON message after the first one is dropped. Solution: Put remainder of message back in the queue. Files: src/channel.c *** ../vim-7.4.1238/src/channel.c 2016-02-02 18:19:52.790743971 +0100 --- src/channel.c 2016-02-02 18:37:40.375683988 +0100

Patch 7.4.1240

2016-02-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.1240 Problem:Visual studio tools are noisy. Solution: Suppress startup info. (Mike Williams) Files: src/GvimExt/Makefile, src/Make_mvc.mak, src/tee/Make_mvc.mak *** ../vim-7.4.1239/src/GvimExt/Makefile2016-01-15 18:03:26.869250872 +0100 --- src/GvimExt/Makefile

Re: Diff to silence noise from VS tools

2016-02-02 Fir de Conversatie Bram Moolenaar
Mike Williams wrote: > Attached is a diff that suppresses the startup info from various Visual > Studio tools used to build VIM. They just add noise to the build log. Thanks! -- hundred-and-one symptoms of being an internet addict: 107. When using your phone you forget that you don't have

Re: [Patch] GTK3 GUI

2016-02-02 Fir de Conversatie Marius Gedminas
On Tue, Feb 02, 2016 at 05:15:16PM +0900, Kazunobu Kuriyama wrote: > 2016-02-02 16:47 GMT+09:00 Marius Gedminas : > > On Mon, Feb 01, 2016 at 05:30:43PM +0900, Kazunobu Kuriyama wrote: > > > 2016-02-01 16:44 GMT+09:00 Marius Gedminas : > > > > The blank text

highlight of key/value in dict

2016-02-02 Fir de Conversatie mattn
Hi list. "bar" is not hghlighted in {"foo":"bar"}. http://go-gyazo.appspot.com/ea348aedfed8d296.png but if put one space in before "bar, it works. http://go-gyazo.appspot.com/afc0b186d9722c93.png it should be: http://go-gyazo.appspot.com/eb086e57fe591402.png diff --git

Re: Patch 7.4.1244

2016-02-02 Fir de Conversatie mattn
I updated timeout patch. https://gist.github.com/mattn/867a635e14ac2360613a -- -- 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

htmlcomplete#CompleteTags() incorrectly returns upper case completion

2016-02-02 Fir de Conversatie Axel Bender
Using after "

Re: Update Japanese translations

2016-02-02 Fir de Conversatie Ken Takata
Hi Jun, 2016/2/2 Tue 13:35:03 UTC+9 Jun T. wrote: > On 2016/02/02, at 10:15, Ken Takata wrote: > > > > I have to rethink how to fix this. Moving a white space from the top of the > > latter message to end of the former message solves the problem, but ugly... > > We can