Patch 7.3.634

2012-08-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.634 Problem:Month/Day format for undo is confusing. (Marcin Szamotulski) Solution: Always use Year/Month/Day, should work for everybody. Files: src/undo.c *** ../vim-7.3.633/src/undo.c 2012-06-01 13:46:06.0 +0200 --- src/undo.c 2012-08-23 12:43:24.0 +0200

Re: date in undo not uses locale setting

2012-08-23 Fir de Conversatie Bram Moolenaar
Marcin Szamotulski wrote: I found that when I use g-, g+ to move to through undo tree the day of the month always follows the month independently of the locale: LC_TIME='en_GB.utf8' vim some file with undo tree longer than just today then g- shows (after hitting changes from yesterday):

Re: date in undo not uses locale setting

2012-08-23 Fir de Conversatie Bram Moolenaar
Maxim Philippov wrote: On Tuesday, August 21, 2012 11:01:37 AM UTC+4, Marcin Szamotulski wrote: Dear Vim_Dev, I found that when I use g-, g+ to move to through undo tree the day of the month always follows the month independently of the locale: LC_TIME='en_GB.utf8' vim some file

Re: date in undo not uses locale setting

2012-08-23 Fir de Conversatie Maxim Philippov
On Thursday, August 23, 2012 2:59:18 PM UTC+4, Bram Moolenaar wrote: Maxim Philippov wrote: On Tuesday, August 21, 2012 11:01:37 AM UTC+4, Marcin Szamotulski wrote: Dear Vim_Dev, I found that when I use g-, g+ to move to through undo tree the day of the month always

Re: Issue 19 in vim: add filetype for mercurial checkins

2012-08-23 Fir de Conversatie vim
Updates: Status: Fixed Comment #3 on issue 19 by brammool...@gmail.com: add filetype for mercurial checkins http://code.google.com/p/vim/issues/detail?id=19 Filetype was added, syntax file included. -- You received this message from the vim_dev maillist. Do not top-post! Type your

Patch 7.3.635

2012-08-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.635 Problem:Issue 21: System call during startup sets 'lines' to a wrong value. (Karl Yngve) Solution: Don't set the shell size while the GUI is still starting up. (Christian Brabandt) Files: src/ui.c *** ../vim-7.3.634/src/ui.c 2012-07-10

Re: Issue 21 in vim: System-calls interferes with lines

2012-08-23 Fir de Conversatie vim
Updates: Status: Fixed Comment #2 on issue 21 by brammool...@gmail.com: System-calls interferes with lines http://code.google.com/p/vim/issues/detail?id=21 Patch 7.3.635 should fix this. Please reopen when the problem still happens. -- You received this message from the vim_dev

Re: date in undo not uses locale setting

2012-08-23 Fir de Conversatie Jürgen Krämer
Hi, Bram Moolenaar wrote: This is hard coded. Perhaps we should always show the year: Year/Month/Day. That's ISO 8601. If it's a standard it must be right! the separator between date values is a hyphen. A slash is used in time intervals. Regards, Jürgen -- Sometimes I think the

Re: date in undo not uses locale setting

2012-08-23 Fir de Conversatie Ingo Karkat
On 23-Aug-2012 13:53:53 +0200, Jürgen Krämer wrote: Bram Moolenaar wrote: This is hard coded. Perhaps we should always show the year: Year/Month/Day. That's ISO 8601. If it's a standard it must be right! the separator between date values is a hyphen. A slash is used in time intervals.

Patch 7.3.636

2012-08-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.636 (after 7.3.625) Problem:Not all zero-width matches handled correctly for gn. Solution: Move zero-width detection to a separate function. (Christian Brabandt) Files: src/search.c *** ../vim-7.3.635/src/search.c 2012-08-08 15:27:54.0 +0200 ---

Patch 7.3.545 reintroduced issue fixed in 7.3.449

2012-08-23 Fir de Conversatie Richard Brown
Hi, 7.3.449 fixed an issue where this autocommand and the following sequence would cause a segfault: :autocmd BufWinLeave * if empty(bt) | lclose | endif :call setloclist(1, [{'bufnr': 1, 'lnum': 1, 'text': 'testing'}]) :lopen ^wk :q according to hg bisect it was 7.3.545 that reintroduced the

Patch 7.3.637

2012-08-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.637 Problem:Cannot catch the error caused by a foldopen when there is no fold. (ZyX, Issue 48) Solution: Do not break out of the loop early when inside try/catch. (Christian Brabandt) Except when there is a syntax error. Files: src/ex_docmd.c,

Patch 7.3.638

2012-08-23 Fir de Conversatie Bram Moolenaar
Patch 7.3.638 Problem:Unecessary redraw of the previous character. Solution: Check if the character is double-width. (Jon Long) Files: src/screen.c *** ../vim-7.3.637/src/screen.c 2012-07-10 16:49:08.0 +0200 --- src/screen.c2012-08-23 18:49:33.0 +0200

Re: Patch 7.3.638

2012-08-23 Fir de Conversatie Steve Hall
On Thu, Aug 23, 2012 at 12:58 PM, Bram Moolenaar b...@moolenaar.net wrote: Patch 7.3.638 [...] Not sure why, but the :version command of my build this time produced the line: Included patches: 1-638, 638 -- Steve Hall [ digitect dancingpaper com ] -- You received this message from the

Re: Patch 7.3.635

2012-08-23 Fir de Conversatie Christian J. Robinson
On Thu, 23 Aug 2012, Bram Moolenaar wrote: Patch 7.3.635 Problem:Issue 21: System call during startup sets 'lines' to a wrong value. (Karl Yngve) Solution: Don't set the shell size while the GUI is still starting up. (Christian Brabandt) Files: src/ui.c Now

[patch] fixed minor mistakes in help files

2012-08-23 Fir de Conversatie Dominique Pellé
Hi Attached patch fixes minor mistakes in help files. 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 http://www.vim.org/maillist.php doc-fixes-7.3.638.patch

Re: [patch] fixed minor mistakes in help files

2012-08-23 Fir de Conversatie Bram Moolenaar
Dominique Pelle wrote: Attached patch fixes minor mistakes in help files. Thanks, I'll include them. -- A cow comes flying over the battlements, lowing aggressively. The cow lands on GALAHAD'S PAGE, squashing him completely. Monty Python and the Holy Grail PYTHON

Re: Patch 7.3.638

2012-08-23 Fir de Conversatie Bram Moolenaar
Steve Hall wrote: On Thu, Aug 23, 2012 at 12:58 PM, Bram Moolenaar b...@moolenaar.net wrote: Patch 7.3.638 [...] Not sure why, but the :version command of my build this time produced the line: Included patches: 1-638, 638 My script to include the patch in the Mercurial repository

Re: Patch 7.3.635

2012-08-23 Fir de Conversatie Bram Moolenaar
Christian J. Robinson wrote: On Thu, 23 Aug 2012, Bram Moolenaar wrote: Patch 7.3.635 Problem:Issue 21: System call during startup sets 'lines' to a wrong value. (Karl Yngve) Solution: Don't set the shell size while the GUI is still starting up. (Christian

Re: Patch 7.3.545 reintroduced issue fixed in 7.3.449

2012-08-23 Fir de Conversatie Bram Moolenaar
Richard Brown wrote: Hi, 7.3.449 fixed an issue where this autocommand and the following sequence would cause a segfault: :autocmd BufWinLeave * if empty(bt) | lclose | endif :call setloclist(1, [{'bufnr': 1, 'lnum': 1, 'text': 'testing'}]) :lopen ^wk :q according to hg bisect it was

Re: Patch 7.3.545 reintroduced issue fixed in 7.3.449

2012-08-23 Fir de Conversatie Richard Brown
On Thu, Aug 23, 2012 at 9:56 PM, Bram Moolenaar b...@moolenaar.net wrote: Richard Brown wrote: Hi, 7.3.449 fixed an issue where this autocommand and the following sequence would cause a segfault: :autocmd BufWinLeave * if empty(bt) | lclose | endif :call setloclist(1, [{'bufnr': 1,

Re: [patch] Setting: Open previous tab when a tab is closed

2012-08-23 Fir de Conversatie William Bowers
On Wednesday, August 22, 2012 8:12:19 AM UTC-7, Dominique Pelle wrote: William Bowers wrote: Is there something else I can fix in this patch? Or is it acceptable? It's already listed in :help todo.txt so I think it's only a matter of time for it to be included: ===