Re: [vim/vim] vim8 dvorak (#756)

2016-04-13 Fir de Conversatie Ben Fritz
On Wednesday, April 13, 2016 at 9:53:32 PM UTC-5, Tim Gregg wrote: > could you please incorporate a setting in the new version of vim so it makes > more sense for us dvorakers to use it? > > Well, there's a script to do some mappings for you. Previously it was in $VIMRUNTIME/macros/dvorak,

Re: Patch 7.4.1274

2016-04-13 Fir de Conversatie Diego Viola
On Sunday, February 14, 2016 at 5:28:25 PM UTC-2, Christian Brabandt wrote: > Hi Diego! > > On So, 14 Feb 2016, Diego Viola wrote: > > > So is this a bug or what? > > do you need the output? > > Best, > Christian > -- > Die Ideen sind nicht verantwortlich für das, was die Menschen aus > ihnen

Re: Vim 7.5 or Vim 8?

2016-04-13 Fir de Conversatie Charles E Campbell
Michael Jarvis wrote: > On Tuesday, April 5, 2016 at 2:28:34 AM UTC-5, Dominique Pelle wrote: >> Bram Moolenaar wrote: >> >>> I have been wondering if the next release should be called 7.5 or 8. >>> We have quite a few new features, but not that many as with the Vim 7 >>> release. Well, that was

Re: Channel & job design

2016-04-13 Fir de Conversatie Charles Campbell
Charles Campbell wrote: > Bram Moolenaar wrote: >> Lcd wrote: >> >> There are also UNIX domain sockets (a.k.a. named pipes), which you get >> essentially for free once you have the code for INET sockets. They are >> as efficient as (unnamed) pipes. The code is already there, but it's >> mutually

Re: Channel & job design

2016-04-13 Fir de Conversatie Charles Campbell
Bram Moolenaar wrote: > Lcd wrote: > > There are also UNIX domain sockets (a.k.a. named pipes), which you get > essentially for free once you have the code for INET sockets. They are > as efficient as (unnamed) pipes. The code is already there, but it's > mutually exclusive with INET sockets. I

Re: Vim 7.5 or Vim 8?

2016-04-13 Fir de Conversatie Michael Jarvis
On Tuesday, April 5, 2016 at 2:28:34 AM UTC-5, Dominique Pelle wrote: > Bram Moolenaar wrote: > > > I have been wondering if the next release should be called 7.5 or 8. > > We have quite a few new features, but not that many as with the Vim 7 > > release. Well, that was a big release. I think

[bug][patch] There is a case that "noinsert" (completeopt) option is ignored

2016-04-13 Fir de Conversatie Ozaki Kiichi
Hi. By using following vimrc, "aa" is inserted automatically at the first entering insert mode against "noinsert" option. [repro steps] vimrc: set nocompatible set completeopt=menu,noinsert function! C(...) abort if mode() ==# 'i' call complete(col('.'), ['aa', 'aaa']) else

Patch 7.4.1726

2016-04-13 Fir de Conversatie Bram Moolenaar
Patch 7.4.1726 Problem:ANSI compiler complains about string length. Solution: Split long string in two parts. (Michael Jarvis) Files: src/ex_cmds.c *** ../vim-7.4.1725/src/ex_cmds.c 2016-03-19 22:11:47.416675050 +0100 --- src/ex_cmds.c 2016-04-13 21:10:06.758882006 +0200

Re: [patch] src/ex_cmds.c : Fix warning about string length exceeding ISO C90 max of 509

2016-04-13 Fir de Conversatie Bram Moolenaar
Michael Jarvis wrote: > This is another warning from compiling with "-ansi -pedantic" on > OpenBSD 5.9 using GCC 4.2.1. > > $ gcc -c -I. -Iproto -DHAVE_CONFIG_H -I/usr/local/include -Os -Wall > -Wextra -pipe -ansi -pedantic -DNDEBUG -mtune=native -U_FORTIFY_SOURCE > -D_FORTIFY_SOURCE=1

Re: Vim 7.5 or Vim 8?

2016-04-13 Fir de Conversatie Elimar Riesebieter
* Dominique Pellé [2016-04-05 09:27 +0200]: > Bram Moolenaar wrote: > > > I have been wondering if the next release should be called 7.5 or 8. > > We have quite a few new features, but not that many as with the Vim 7 > > release. Well, that was a

Re: Vim 7.5 or Vim 8?

2016-04-13 Fir de Conversatie Diego Viola
On Monday, April 4, 2016 at 5:13:23 PM UTC-3, Bram Moolenaar wrote: > I have been wondering if the next release should be called 7.5 or 8. > We have quite a few new features, but not that many as with the Vim 7 > release. Well, that was a big release. I think the most important > addition since

[patch] src/ex_cmds.c : Fix warning about string length exceeding ISO C90 max of 509

2016-04-13 Fir de Conversatie Michael Jarvis
This is another warning from compiling with "-ansi -pedantic" on OpenBSD 5.9 using GCC 4.2.1. $ gcc -c -I. -Iproto -DHAVE_CONFIG_H -I/usr/local/include -Os -Wall -Wextra -pipe -ansi -pedantic -DNDEBUG -mtune=native -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -o objects/ex_cmds.o ex_cmds.c

Re: [patch] Add optiontype function

2016-04-13 Fir de Conversatie Anton Lindqvist
On Sun, Mar 27, 2016 at 06:11:10PM +0200, Anton Lindqvist wrote: > On Sat, Mar 26, 2016 at 04:52:47PM +0100, Bram Moolenaar wrote: > > > > Anton Lindqvist wrote: > > > > > > > Hi, > > > > > This patch adds a function with the declaration optiontype({option}) > > > > > which returns the type of

Re: Bug: read from free'd memory when jumping from a quickfix list

2016-04-13 Fir de Conversatie LCD 47
On 12 April 2016, Yegappan Lakshmanan wrote: > Hi, > > On Tue, Apr 12, 2016 at 9:59 AM, LCD 47 wrote: [...] > > Currently .ll when jumping to file "example.txt" line N goes > > roughly like this: > > > > (1) load "example.txt" > > (2) trigger autocmds

Re: [patch] Fix quickfix handling of long lines

2016-04-13 Fir de Conversatie Anton Lindqvist
On Sat, Apr 09, 2016 at 04:45:23PM +0200, Anton Lindqvist wrote: > On Tue, Apr 05, 2016 at 09:56:26PM +0200, Bram Moolenaar wrote: > > > > Anton Lindqvist wrote: > > > > > > > If a file passed to the 'qf_init_ext' function contains lines longer > > > > > than 1021 bytes (might be platform