Re: How about a release?

2018-03-15 Fir de Conversatie Christian Brabandt
On Do, 15 Mär 2018, Bram Moolenaar wrote: > > Christian wrote: > > > > On Do, 15 Mär 2018, Christian Brabandt wrote: > > > On Do, 15 Mär 2018, M Kelly wrote: > > > > GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1 > > > This needs a gdb 7.12 > > > > How about the following patch: > > I'm actual

Re: How about a release?

2018-03-15 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Do, 15 Mär 2018, Christian Brabandt wrote: > > On Do, 15 Mär 2018, M Kelly wrote: > > > GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1 > > This needs a gdb 7.12 > > How about the following patch: I'm actually not sure if 7.12 is really the required version. It appears that

Re: [patch][doc] Fix typo

2018-03-15 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > I found some mistakes in the document. > Please check the attached patch. I'll include it, thanks. > I also think that it's better to include a patch I wrote in the following > comment: > https://github.com/vim/vim/issues/2660#issuecomment-367557557 I'll include it. -- hu

Re: documentation patch

2018-03-15 Fir de Conversatie Bram Moolenaar
Christian wrote: > currently the documentation at `:h autocmd` uses an example that does > not work. This: > `:autocmd! " comment` > > will try to remove all autocommands for the group '" comment' and return > "E216: No such group or event" > So fix that in the documentation and mention,

Re: Optimize s:StarSetf(ft)

2018-03-15 Fir de Conversatie Ni Va
gvim 8.0.1608 build today.On Windows 10 Just deploy my standalone version onto another Windows machine. IM - Vi IMproved 8.0 (2016 Sep 12, compiled Mar 15 2018 20:56:10) MS-Windows 64-bit GUI version with OLE support Included patches: 1-1608 Compiled by nicolas.valentin@NEXEYA Huge version with

[patch] speed up regexp in runtime/syntax/vim.vim

2018-03-15 Fir de Conversatie Dominique Pellé
Dear Charles Please consider the following patch to the runtime/syntax/vim.vim syntax file. It contains simple regexp optimizations In particular, it speeds up the regexp of vimFunc which is the slowest according to ":syntime report". The optimization only helps when using "set re=1". With "set

Re: Terminal close behavior

2018-03-15 Fir de Conversatie Prabir Shrestha
I like how neovim does it. When you exit by default is doesn't close the terminal but shows [Process exited 0] and I can press any buttons to close it. (Attached image) On Wednesday, March 14, 2018 at 3:25:41 PM UTC-7, Dominique Pelle wrote: > Bram Moolenaar wrote: > > > I currently think tha

Re: How about a release?

2018-03-15 Fir de Conversatie Christian Brabandt
On Do, 15 Mär 2018, Christian Brabandt wrote: > On Do, 15 Mär 2018, M Kelly wrote: > > GNU gdb (Ubuntu 7.11.1-0ubuntu1~16.5) 7.11.1 > This needs a gdb 7.12 How about the following patch: diff --git a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim b/runtime/pack/dist/opt/termdebug/plugin/te

documentation patch

2018-03-15 Fir de Conversatie Christian Brabandt
Bram, currently the documentation at `:h autocmd` uses an example that does not work. This: `:autocmd! " comment` will try to remove all autocommands for the group '" comment' and return "E216: No such group or event" So fix that in the documentation and mention, that a comment char will be

Re: How about a release?

2018-03-15 Fir de Conversatie Christian Brabandt
On Do, 15 Mär 2018, M Kelly wrote: > Error detected while processing function 17_StartDebug: > line 73: > Your gdb does not support the Machine Interface feature > > But cannot seem to find info on the web about what this means/how to make > progress. Any quick suggestion ? > Do I need to bu

Re: How about a release?

2018-03-15 Fir de Conversatie M Kelly
Hi, Thx. Excited to try it out, I get this - Error detected while processing function 17_StartDebug: line 73: Your gdb does not support the Machine Interface feature But cannot seem to find info on the web about what this means/how to make progress. Any quick suggestion ? Do I need to build

[patch][doc] Fix typo

2018-03-15 Fir de Conversatie Ken Takata
Hi, I found some mistakes in the document. Please check the attached patch. I also think that it's better to include a patch I wrote in the following comment: https://github.com/vim/vim/issues/2660#issuecomment-367557557 Regards, Ken Takata -- -- You received this message from the "vim_dev" m

Re: Optimize s:StarSetf(ft)

2018-03-15 Fir de Conversatie Christian Brabandt
On Do, 15 Mär 2018, Ni Va wrote: > > Hi, > > According to profile report log, this func take many time just when I open > $MYVIMRC. > > > FUNCTIONS SORTED ON TOTAL TIME > count total (s) self (s) function > 1 4.823772 0.44 3_StarSetf() > 1 2.487757 0.268725 17_SynSe

Optimize s:StarSetf(ft)

2018-03-15 Fir de Conversatie Ni Va
Hi, According to profile report log, this func take many time just when I open $MYVIMRC. FUNCTIONS SORTED ON TOTAL TIME count total (s) self (s) function 1 4.823772 0.44 3_StarSetf() 1 2.487757 0.268725 17_SynSet() 1 2.209328 0.714291 14_LoadFTPlugin() 8