Re: [patch] visual block delete with 'breakindent' deleted amount is strange.

2015-01-26 Fir de Conversatie Christian Brabandt
Am 2015-01-26 23:37, schrieb h_east: Hi Bram and Vim developers, How to reproduce: Pattern#1 :set breakindent :30vnew :normal! 3a1234567890 :normal! aabcde :exec "normal! 0\te" x Expected behavior: - displayed "e" Actual behavior: - displayed "abcde" Pattern#2 -

Issue 323 in vim: setreg(..., ..., 'al') keeps appending newlines

2015-01-26 Fir de Conversatie vim
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 323 by nicolash...@gmail.com: setreg(..., ..., 'al') keeps appending newlines https://code.google.com/p/vim/issues/detail?id=323 What steps will reproduce the problem? 1. Select a charwise text into a register 2. Do :call

Re: [new feature] [patch] Added completeselect option

2015-01-26 Fir de Conversatie Pedro Ferrari
https://github.com/Shougo/neocomplete.vim/issues/355 I think this patch would be really useful. Please consider merging. Thanks -- -- 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://w

Re: wincmd Invalid Range error problem with tagselect.vim and 7.4.580

2015-01-26 Fir de Conversatie Gary Johnson
On 2015-01-20, Gary Johnson wrote: > I've been using Hari Krishna Dara's tagselect.vim plugin, which uses > his genutils.vim library plugin, for some time. I use it several > times a week. Since upgrading to Vim 7.4.580, I've started getting > this error from the Tjump command: > > Error det

Re: [new feature] [patch] Added completeselect option

2015-01-26 Fir de Conversatie Pedro Ferrari
On Friday, June 7, 2013 at 3:11:30 AM UTC-3, UncleBill wrote: > 在 2013年5月30日星期四UTC+8上午8时39分06秒,MarcWeber写道: > > Excerpts from Shougo's message of Thu May 30 02:30:12 +0200 2013: > > > > > How do you think about this feature? > > > > Can you try providing use cases when which option is likely to b

[patch] visual block delete with 'breakindent' deleted amount is strange.

2015-01-26 Fir de Conversatie h_east
Hi Bram and Vim developers, How to reproduce: Pattern#1 :set breakindent :30vnew :normal! 3a1234567890 :normal! aabcde :exec "normal! 0\te" x Expected behavior: - displayed "e" Actual behavior: - displayed "abcde" Pattern#2 :set breakindent :30vnew :nor

Re: Issue 132 in vim: Crontab syntax highlighting doesn't work properly when day/month names are not lowercased

2015-01-26 Fir de Conversatie vim
Updates: Status: Fixed Comment #5 on issue 132 by chrisbr...@googlemail.com: Crontab syntax highlighting doesn't work properly when day/month names are not lowercased https://code.google.com/p/vim/issues/detail?id=132 Closing, as an update has been commited https://code.google.com/p

Re: Issue 232 in vim: AWK syntax highliting slash operator turns into regexp

2015-01-26 Fir de Conversatie vim
Updates: Status: Fixed Comment #5 on issue 232 by chrisbr...@googlemail.com: AWK syntax highliting slash operator turns into regexp https://code.google.com/p/vim/issues/detail?id=232 Updated syntax file commited with https://code.google.com/p/vim/source/detail?r=435956324539eea89a17

Re: [Patch] Add option to disable insert completion message in shortmess

2015-01-26 Fir de Conversatie Christian Brabandt
Hi James! On Mo, 26 Jan 2015, James Brown wrote: [patch from December 2013] > +1 If I am not mistaken this patch has already been merged... Best, Christian -- Wie der stille See seinen dunklen Grund in der tiefen Quelle hat, so hat die Liebe eines Menschen ihren rätselhaften Grund in Gottes L

Re: [DIFF] crontab syntax: Month/Day case insensitive

2015-01-26 Fir de Conversatie Craig Skinner
On 2015-01-26 Mon 13:59 PM |, Christian Brabandt wrote: > >> > >>I'll include this version, thanks. > >> > > > >Has this been committed? > > Yesterday: > http://code.google.com/p/vim/source/detail?r=435956324539eea89a17f0409a15b588973c0cb9 > Aye, that works. Cheers! -- Craig Skinner Multiple a

Re: Issue 319 in vim: New option to not beep with 'showmatch'

2015-01-26 Fir de Conversatie vim
Comment #9 on issue 319 by benjamin...@rockwellcollins.com: New option to not beep with 'showmatch' https://code.google.com/p/vim/issues/detail?id=319 Perhaps instead of InsertEnter/InsertLeave to disable the beep, one could use InsertCharPre to disable specifically when entering a few choi

Re: [Patch] Add option to disable insert completion message in shortmess

2015-01-26 Fir de Conversatie James Brown
On Tuesday, December 31, 2013 at 6:01:55 AM UTC-6, Shougo wrote: > Hi, Bram. > > I created the patch for adding option to disable insert completion message in > shortmess. > Because, the completion message is not useful for powered users. > But it clears previous command line messages and flicks c

Re: [DIFF] crontab syntax: Month/Day case insensitive

2015-01-26 Fir de Conversatie Christian Brabandt
Am 2015-01-24 15:40, schrieb skin...@britvault.co.uk: On 2015-01-22 Thu 22:40 PM |, Bram Moolenaar wrote: David Yeti wrote: > tl;dr > Bram, please update crontab.vim syntax file to the attached version. > I'll include this version, thanks. Has this been committed? Yesterday: http://code.

[patch] When run the "make test" on non-English locale system, test_command_count fails.

2015-01-26 Fir de Conversatie h_east
Hi Bram and list, How to reproduce (on Linux): - Set non-English system locale. $ export LANG=ja_JP.UTF-8 - run test only test_command_count. $ cd src/testdir $ make test_command_count.out rm -rf test_command_count.failed test.ok test.out X* viminfo cp test_command_count.ok test.ok #

Re: ':edit file' is broken when 'buftype=nofile'

2015-01-26 Fir de Conversatie Xavier de Gaye
On 01/25/2015 03:59 PM, Bram Moolenaar wrote: > Xavier de Gaye wrote: >> In the following test case, 'foobar' and 'dummy_file' are two >> non-existent files: >> >> gvim -o foobar dummy_file >> :set buftype=nofile >> :call append(1, "second line")-> foobar contains now two lines >>