Re: problems with git and maintaining files

2016-08-21 Fir de Conversatie Marius Gedminas
On Fri, Aug 19, 2016 at 04:56:34PM -0400, Charles E Campbell wrote: > Charles E Campbell wrote: > > Christ van Willegen wrote: > >> Op 19 aug. 2016 22:28 schreef "Charles E Campbell" > >> >: > >>> I tried git stash push instead of git

Re: Vim 8 pre-announcement

2016-08-21 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Di, 16 Aug 2016, Bram Moolenaar wrote: > > > An overview of new features can be found in: > > https://github.com/vim/vim/blob/master/runtime/doc/version8.txt > > A version with links (but a day older): > > http://vimhelp.appspot.com/version8.txt.html > > Hm, >

Re: Wish list for a more powerful search in Vim

2016-08-21 Fir de Conversatie Christian Brabandt
Hi Yegappan! On Mo, 08 Aug 2016, Yegappan Lakshmanan wrote: > In the above line with the cursor at the beginning of the line, > search for "text", press and then press . > The expected behavior is for the cursor to be placed at the > first "text". But the cursor is not moved and is still placed

Re: Patch 7.4.2231

2016-08-21 Fir de Conversatie John Marriott
On 21-Aug-2016 23:00, Bram Moolenaar wrote: John Marriott wrote: On 21-Aug-2016 02:37, Bram Moolenaar wrote: Patch 7.4.2231 Problem:":oldfiles" output is a very long list. Solution: Add a pattern argument. (Coot, closes #575) Files: runtime/doc/starting.txt, src/ex_cmds.h,

Re: Vim 8 pre-announcement

2016-08-21 Fir de Conversatie Christian Brabandt
Hi Bram! On Di, 16 Aug 2016, Bram Moolenaar wrote: > An overview of new features can be found in: > https://github.com/vim/vim/blob/master/runtime/doc/version8.txt > A version with links (but a day older): > http://vimhelp.appspot.com/version8.txt.html Hm, ,[ :h new-items-8 ]- | Normal mode

Patch 7.4.2238

2016-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.4.2238 Problem:With SGR mouse reporting (suckless terminal) the mouse release and scroll up/down is confused. Solution: Don't see a release as a scroll up/down. (Ralph Eastwood) Files: src/term.c *** ../vim-7.4.2237/src/term.c 2016-08-14 16:07:44.725705357 +0200

Patch 7.4.2236

2016-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.4.2236 Problem:The 'langnoremap' option leads to double negatives. And it does not work for the last character of a mapping. Solution: Add 'langremap' with the opposite value. Keep 'langnoremap' for backwards compatibility. Make it work for the last

Re: ftp.vim.org down?

2016-08-21 Fir de Conversatie Bram Moolenaar
Elimar Riesebieter wrote: > ping ftp.vim.org > > PING ftp.vim.org(ftp.nluug.nl (2001:67c:6ec:221:145:220:21:40)) 56 data bytes > > --- ftp.vim.org ping statistics --- > 3 packets transmitted, 0 received, 100% packet loss, time 2025ms Yes, it's broken. Unknown when it will be repaired. --

[new feature] :tab modifier's counter supports dollar and relative number

2016-08-21 Fir de Conversatie h_east
Hi Bram and list, I made a patch about :tab modifier counter. Existing features: :tab split " opens current buffer in new tab page :tab help gt" opens tab page with help for "gt" :0tab help " opens tab page with help before the first one New features: :.tab help gt

Re: debugging vim

2016-08-21 Fir de Conversatie carmel zuk
On Sunday, August 21, 2016 at 4:00:24 PM UTC+3, Bram Moolenaar wrote: > Carmel Zuk wrote: > > > Hi all, > > I'd like to debug vim with cgdb to understand how it works. > > > > My problem is this: > > when I run > > cgdb vim > > I get the output in the cgdb console as binary.. I can't debug

ftp.vim.org down?

2016-08-21 Fir de Conversatie Elimar Riesebieter
ping ftp.vim.org PING ftp.vim.org(ftp.nluug.nl (2001:67c:6ec:221:145:220:21:40)) 56 data bytes --- ftp.vim.org ping statistics --- 3 packets transmitted, 0 received, 100% packet loss, time 2025ms -- You cannot propel yourself forward by patting yourself on the back. -- -- You received

Re: Vim 8 pre-announcement

2016-08-21 Fir de Conversatie Michael Henry
On 08/18/2016 02:11 PM, Yegappan Lakshmanan wrote: > On Thu, Aug 18, 2016 at 5:48 AM, Michael Henry wrote: >> I was trying to find something in the help regarding the meaning >> of a "window id". Though there are several functions that >> accept and return these, I can't

Patch 7.4.2235

2016-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.4.2235 Problem:submatch() does not check for a valid argument. Solution: Give an error if the argument is out of range. (Dominique Pelle) Files: src/evalfunc.c, src/testdir/test_expr.vim *** ../vim-7.4.2234/src/evalfunc.c 2016-08-21 14:36:11.968845449 +0200 ---

Re: Patch 7.4.2231

2016-08-21 Fir de Conversatie Bram Moolenaar
John Marriott wrote: > On 21-Aug-2016 02:37, Bram Moolenaar wrote: > > Patch 7.4.2231 > > Problem:":oldfiles" output is a very long list. > > Solution: Add a pattern argument. (Coot, closes #575) > > Files: runtime/doc/starting.txt, src/ex_cmds.h, src/eval.c, > >

Patch 7.4.2234

2016-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.4.2234 Problem:Can't build with +eval but without +quickfix. (John Marriott) Solution: Move skip_vimgrep_pat() to separate #ifdef block. Files: src/quickfix.c *** ../vim-7.4.2233/src/quickfix.c 2016-08-12 16:29:03.347068413 +0200 --- src/quickfix.c 2016-08-21

Re: debugging vim

2016-08-21 Fir de Conversatie Bram Moolenaar
Carmel Zuk wrote: > Hi all, > I'd like to debug vim with cgdb to understand how it works. > > My problem is this: > when I run > cgdb vim > I get the output in the cgdb console as binary.. I can't debug mouse actions > or editing. > > Is there a way to point vim to another terminal

Re: Changing the defaults with Vim 8

2016-08-21 Fir de Conversatie Michael Henry
On 08/20/2016 01:22 PM, Bram Moolenaar wrote: > Hirohito Higashi wrote: >> `set ttimeoutlen=0` will solve the above. >> >> I have invested in above setting more than a year, but the >> trouble does not happen even once. > > Zero only works when you are directly using a terminal. When > using a

Patch 7.4.2233

2016-08-21 Fir de Conversatie Bram Moolenaar
Patch 7.4.2233 Problem:Crash when using funcref() with invalid name. (Dominique Pelle) Solution: Check for NULL translated name. Files: src/evalfunc.c, src/testdir/test_expr.vim *** ../vim-7.4.2232/src/evalfunc.c 2016-08-18 21:22:00.966648696 +0200 --- src/evalfunc.c

Re: [bug] crash with funcref in vim-7.4.2232

2016-08-21 Fir de Conversatie Bram Moolenaar
Dominique wrote: > afl-fuzz found this command which crashes vim-7.4.2232: > > $ vim -u NONE -c "echo funcref('{')" > Vim: Caught deadly signal SEGV > Vim: Finished. > Segmentation fault (core dumped) > > In gdb: > > Program received signal SIGSEGV, Segmentation fault. >

Re: 100% CPU for a long time when editing .yml file

2016-08-21 Fir de Conversatie Armin Walland
> I can't reproduce it using vim-7.4.2232 (huge) on Linux. VIM - Vi IMproved 7.4 (2013 Aug 10) Included patches: 1-207, 209-326 Compiled by 'http://www.opensuse.org/' > Which version of Vim are you using? Make sure you're using > a recent version, as the bug may have been fixed already. > >

Re: Patch 7.4.2231

2016-08-21 Fir de Conversatie Marcin Szamotulski
On 05:38 Sun 21 Aug , John Marriott wrote: > On 21-Aug-2016 02:37, Bram Moolenaar wrote: > > Patch 7.4.2231 > > Problem:":oldfiles" output is a very long list. > > Solution: Add a pattern argument. (Coot, closes #575) > > Files: runtime/doc/starting.txt, src/ex_cmds.h, src/eval.c, >

Re: Scant GTK3 documentation

2016-08-21 Fir de Conversatie Kazunobu Kuriyama
2016-08-11 20:12 GMT+09:00 Tony Mechelynck : > On Thu, Aug 11, 2016 at 10:01 AM, Kazunobu Kuriyama > wrote: > > Hi Tony, > > > > Thank you for all those checks! > > Thank _you_ for the explanations, they're a great help to my >

[patch] doc fixes

2016-08-21 Fir de Conversatie Dominique Pellé
Hi Attached patch contains doc updates: - typo corrections - :help :search-args was misaligned with concealed text Regards Dominique -- -- 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

debugging vim

2016-08-21 Fir de Conversatie carmel zuk
Hi all, I'd like to debug vim with cgdb to understand how it works. My problem is this: when I run cgdb vim I get the output in the cgdb console as binary.. I can't debug mouse actions or editing. Is there a way to point vim to another terminal instance other than the cgdb? or how would

Re: 100% CPU for a long time when editing .yml file

2016-08-21 Fir de Conversatie Dominique Pellé
armin walland wrote: > hi! > > i think i have encountered a bug in vim's syntax plugin. > > the behaviour seems to have something to do with matching of curly braces or > quotes. > > $ cat a.yml > > - name: make sure authorized_keys are correct > authorized_key: user=root