Bug in creating a new quickfix list using setqflist()

2016-08-26 Fir de Conversatie Yegappan Lakshmanan
Hi all, If the setqflist() function is used to create an empty quickfix list with a title and then entries are added to the list, then the title gets reset. Also, it is not possible to create a new empty quickfix list with the setqflist() function with a specific title. The attached patch fixes

Re: Patch 7.4.2259

2016-08-26 Fir de Conversatie h_east
Hi Bram and list, 2016-8-27(Sat) 2:14:14 UTC+9 Bram Moolenaar: > Patch 7.4.2259 > Problem:With 'incsearch' can only see the next match. > Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian > Brabandt) > Files: runtime/doc/cmdline.txt, src/ex_getln.c,

Re: Wish list for a more powerful search in Vim

2016-08-26 Fir de Conversatie Yegappan Lakshmanan
Hi, On Thu, Jul 14, 2016 at 10:54 PM, Yegappan Lakshmanan wrote: > Hi all, > > My wish list for extending the Vim search feature: > > 1. When searching for a pattern, pressing a key at the search prompt > should jump to the next or previous match. > 2. After jumping

Re: Write block of raw text

2016-08-26 Fir de Conversatie Shane Harper
> Is there a command somewhere to put or let block of raw lines in VimL. To "put" you could use: insert line 1 line 2 Line 3 . -- Shane -- -- 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,

Re: [vim/vim] Vim cryptmethod is not authenticated (#638)

2016-08-26 Fir de Conversatie Ben Fritz
On Friday, August 26, 2016 at 11:15:19 AM UTC-5, Marvin Renich wrote: > > > I am not suggesting there is nothing to fix. I think Vim's crypto is too > > weak for it to be very useful for important data. > ^ > > That is the salient point. What type of

Re: Updated Vim translations for French and Esperanto

2016-08-26 Fir de Conversatie Bram Moolenaar
Dominique wrote: > Please find attached updated Vim translations > for French and Esperanto using Vim-7.4.2262. > > src/po/fr.po > src/po/eo.po Thanks! -- >From "know your smileys": :-)-O Smiling doctor with stethoscope /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net

Patch 7.4.2263

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2263 Problem::filter does not work for many commands. Can only get matching messages. Solution: Make :filter work for :command, :map, :list, :number and :print. Make ":filter!" show non-matching lines. Files: src/getchar.c, src/ex_cmds.c,

Patch 7.4.2262

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2262 Problem:Fail to read register content from viminfo if it is 438 characters long. (John Chen) Solution: Adjust the check for line wrapping. (closes #1010) Files: src/testdir/test_viminfo.vim, src/ex_cmds.c *** ../vim-7.4.2261/src/testdir/test_viminfo.vim

Patch 7.4.2261

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2261 (after 7.4.2259) Problem:Build fails with small features. Solution: Move "else" inside the #ifdef. Files: src/ex_getln.c *** ../vim-7.4.2260/src/ex_getln.c 2016-08-26 19:13:02.111897066 +0200 --- src/ex_getln.c 2016-08-26 19:54:01.346578783 +0200

Re: Patch 7.4.2259

2016-08-26 Fir de Conversatie Bram Moolenaar
Yegappan Lakshmanan wrote: > On Fri, Aug 26, 2016 at 10:14 AM, Bram Moolenaar wrote: > > > > Patch 7.4.2259 > > Problem:With 'incsearch' can only see the next match. > > Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian > > Brabandt)

Re: Patch 7.4.2259

2016-08-26 Fir de Conversatie Yegappan Lakshmanan
Hi Bram, On Fri, Aug 26, 2016 at 10:14 AM, Bram Moolenaar wrote: > > Patch 7.4.2259 > Problem:With 'incsearch' can only see the next match. > Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian > Brabandt) > Files:

Patch 7.4.2260

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2260 (after 7.4.2258) Problem:Channel test is flaky. Solution: Add a newline to separate JSON messages. Files: src/testdir/test_channel.vim *** ../vim-7.4.2259/src/testdir/test_channel.vim2016-08-26 17:58:33.590124381 +0200 --- src/testdir/test_channel.vim

Patch 7.4.2259

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2259 Problem:With 'incsearch' can only see the next match. Solution: Make CTRL-N/CTRL-P move to the previous/next match. (Christian Brabandt) Files: runtime/doc/cmdline.txt, src/ex_getln.c, src/testdir/Make_all.mak, src/testdir/test_search.vim,

Re: system() delay

2016-08-26 Fir de Conversatie Bram Moolenaar
Ramel Eshed wrote: > On Friday, August 26, 2016 at 12:02:38 AM UTC+3, Bram Moolenaar wrote: > > Ramel Eshed wrote: > > > > > On Thursday, August 11, 2016 at 3:08:01 AM UTC+3, Ramel Eshed wrote: > > > > On Thursday, August 11, 2016 at 2:19:38 AM UTC+3, Tony Mechelynck wrote: > > > > > There are

Re: [vim/vim] Vim cryptmethod is not authenticated (#638)

2016-08-26 Fir de Conversatie Marvin Renich
* fritzophrenic [160825 20:34]: Thanks, fritzophrenic, for a very well thought out and constructive response to this thread. I, too, think Vim's crypto could use a well-planned overhaul, and I fully agree with deprecating (after better encryption is implemented) but

Patch 7.4.2258

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2258 Problem:Two JSON messages are sent without a separator. Solution: Separate messages with a NL. (closes #1001) Files: src/json.c, src/channel.c, src/vim.h, src/testdir/test_channel.py, src/testdir/test_channel.vim, runtime/doc/channel.txt ***

Re: system() delay

2016-08-26 Fir de Conversatie Ramel Eshed
On Friday, August 26, 2016 at 12:02:38 AM UTC+3, Bram Moolenaar wrote: > Ramel Eshed wrote: > > > On Thursday, August 11, 2016 at 3:08:01 AM UTC+3, Ramel Eshed wrote: > > > On Thursday, August 11, 2016 at 2:19:38 AM UTC+3, Tony Mechelynck wrote: > > > > There are other factors which are right

Patch 7.4.2257

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2257 Problem:Coverity complains about not checking for NULL. Solution: Check for out of memory. Files: src/if_py_both.h *** ../vim-7.4.2256/src/if_py_both.h2016-08-01 16:27:19.701352907 +0200 --- src/if_py_both.h2016-08-26 16:32:10.487620127 +0200 ***

Patch 7.4.2256

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2256 Problem:Coverity complains about null pointer check. Solution: Remove wrong and superfluous error check. Files: src/eval.c *** ../vim-7.4.2255/src/eval.c 2016-08-20 18:36:48.304969082 +0200 --- src/eval.c 2016-08-26 16:26:19.398687048 +0200 *** ***

Re: [vim/vim] add SearchHitBoundary autocommand group (#1009)

2016-08-26 Fir de Conversatie Ben Fritz
> > > By the way, an easier way to ring a bell may be 'exe "norm! "', Formatting lost on mailing list, this should be 'exe "norm! \"'. -- -- 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,

Patch 7.4.2255

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2255 Problem:The script that checks translations can't handle plurals. Solution: Check for plural msgid and msgstr entries. Leave the cursor on the first error. Files: src/po/check.vim *** ../vim-7.4.2254/src/po/check.vim2010-08-04 15:45:12.0 +0200

Re: check for sandbox in viml?

2016-08-26 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > > > now that we have the async and timer feature, wouldn't it make sense to > > > have a way to check, whether Vim is in sandbox mode, so that some > > > functions don't randomly trigger E48 errors and can check, whether it is > > > okay to be executed? > > > > It

Write block of raw text

2016-08-26 Fir de Conversatie Luc Hermitte
Hi, Discl.: AFAIK the following doesn't exist (yet?) in Vim, but I may have missed it. Is there a command somewhere to put or let block of raw lines in VimL. I'm perfectly aware of append() and setline(), but I'm looking for something that'll let me write things like: :put << EOF line1

Re: [vim/vim] PWD not changed to follow buffer when writing a new file (#777)

2016-08-26 Fir de Conversatie Axel Bender
The issue hasn't gone as of 7.2254 (Windows, 64-bit). The description of Dan Church still holds for the part of the ":pwd" command, i.e. autochdir is not effective here. -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are

Patch 7.4.2254

2016-08-26 Fir de Conversatie Bram Moolenaar
Patch 7.4.2254 Problem:Compiler warnings in MzScheme code. Solution: Add UNUSED. Remove unreachable code. Files: src/if_mzsch.c *** ../vim-7.4.2253/src/if_mzsch.c 2016-08-07 15:19:22.204295369 +0200 --- src/if_mzsch.c 2016-08-26 12:52:42.492233695 +0200 *** ***

Re: check for sandbox in viml?

2016-08-26 Fir de Conversatie Christian Brabandt
Hi Bram! On Do, 25 Aug 2016, Bram Moolenaar wrote: > > Christian Brabandt wrote: > > > now that we have the async and timer feature, wouldn't it make sense to > > have a way to check, whether Vim is in sandbox mode, so that some > > functions don't randomly trigger E48 errors and can check,

Re: Does the visual bell work in GTK+ 3?

2016-08-26 Fir de Conversatie Christian Brabandt
Hi Tony! On Do, 25 Aug 2016, Tony Mechelynck wrote: > pulseaudio is installed here, along with several additional modules > for it. start-pulseaudio-x11 is installed as part of the > pulseaudio-module-x11 package, and pax11publish as part of the > pulseaudio-utils package. > > There is an