Re: [patch] Issues with langmap

2015-06-09 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: Bram, There are still two open issues with langmaps. One is issue 297 (https://code.google.com/p/vim/issues/detail?id=297), the other one is this one (https://groups.google.com/d/msg/vim_dev/5D1WSL2gj-A/OgCBNZQEHNEJ) I have checked the problem and I think the

Re: [patch] incrementing visually selected lines using Ctrl-A

2015-06-09 Fir de Conversatie Bram Moolenaar
Gary Johnson wrote: On 2015-06-08, Christian Brabandt wrote: That was described wrong. What I meant is, for an input such as this: 1 1 1 visually selecting the rows and pressing Ctrl-A will increment like this 2 3 4 While that is a useful feature, I don't think

Re: [patch] runtime/indent/javascript.vim proposed changes

2015-06-09 Fir de Conversatie Bram Moolenaar
Darrick Wiebe wrote: The file is attached. Link to the file in its repo: https://github.com/pangloss/vim-javascript/blob/master/indent/javascript.vim Thanks. Can you please add the maintainer (you) and the date in the header? Then we can see who to contact and whether the version is

Re: Issue 369 in vim: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3.

2015-06-09 Fir de Conversatie vim
Comment #11 on issue 369 by brammool...@gmail.com: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3. https://code.google.com/p/vim/issues/detail?id=369 Looks like the patch does not encrypt any data blocks, because it checks the flag before doing encryption, and the flag is

Re: Issue 369 in vim: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3.

2015-06-09 Fir de Conversatie vim
Comment #12 on issue 369 by chrisbr...@googlemail.com: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3. https://code.google.com/p/vim/issues/detail?id=369 Well, as i said, i don't know much about the encryption, but I checked, that it created an encrypted file when running

Re: patch to allow locking/unlocking the jump list

2015-06-09 Fir de Conversatie Charles Campbell
Carlo Baldassi wrote: Yes, I had that thought as well. However, as also clearly stated in the documentation of lockmarks, the major drawbacks of this model are 1) not adjusting for line insertions / deletions 2) the possibility of making the command you're calling non-functional, it that

Re: [patch] Issues with langmap

2015-06-09 Fir de Conversatie Christian Brabandt
Hi Bram! On Di, 09 Jun 2015, Bram Moolenaar wrote: Christian Brabandt wrote: Bram, There are still two open issues with langmaps. One is issue 297 (https://code.google.com/p/vim/issues/detail?id=297), the other one is this one

Re: Lua 5.3 detection on Windows using Vim 7.4.691

2015-06-09 Fir de Conversatie mamoru . tasaka
This is because on lua 5.3.0 lua_replace is now just a define, not function: http://www.lua.org/source/5.3/lua.h.html (on 5.2, it was function) but vim 7.4.x still tries to load that symbol. on lua 5.3.0 vim needs fixing so that it does not try to load lua_replace. -- -- You received this

Re: Issue 369 in vim: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3.

2015-06-09 Fir de Conversatie vim
Updates: Status: Fixed Comment #13 on issue 369 by brammool...@gmail.com: Crypt method blowfish corrupts large files in 7.4. Okay in 7.3. https://code.google.com/p/vim/issues/detail?id=369 Fixed by patch 7.4.730. -- You received this message because this project is configured to

Re: [patch] Issues with langmap

2015-06-09 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: Bram, There are still two open issues with langmaps. One is issue 297 (https://code.google.com/p/vim/issues/detail?id=297), the other one is this one (https://groups.google.com/d/msg/vim_dev/5D1WSL2gj-A/OgCBNZQEHNEJ) I have checked the problem and

Patch 7.4.731

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.731 Problem:The tab menu shows Close tab even when it doesn't work. Solution: Don't show Close tab for the last tab. (John Marriott) Files: src/gui_w48.c, src/gui_gtk_x11.c, src/gui_mac.c, src/gui_motif.c *** ../vim-7.4.730/src/gui_w48.c2014-08-22 18:44:30.307175276

Patch 7.4.730

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.730 Problem:When setting the crypt key and using a swap file, text may be encrypted twice or unencrypted text remains in the swap file. (Issue 369) Solution: Call ml_preserve() before re-encrypting. Set correct index for next pointer block.

Patch 7.4.734

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.734 Problem:ml_get error when using p in a Visual selection in the last line. Solution: Change the behavior at the last line. (Yukihiro Nakadaira) Files: src/normal.c, src/ops.c, src/testdir/test94.in, src/testdir/test94.ok ***

Patch 7.4.735

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.735 Problem:Wrong argument for sizeof(). Solution: Use a pointer argument. (Chris Hall) Files: src/eval.c *** ../vim-7.4.734/src/eval.c 2015-05-04 11:10:21.539941849 +0200 --- src/eval.c 2015-06-09 20:24:56.219563938 +0200 *** *** 23164,23170 if

Patch 7.4.732

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.732 Problem:The cursor line is not always updated for the O command. Solution: Reset the VALID_CROW flag. (Christian Brabandt) Files: src/normal.c *** ../vim-7.4.731/src/normal.c 2015-03-31 17:46:16.844128018 +0200 --- src/normal.c2015-06-09 19:18:30.394588238 +0200

Patch 7.4.733

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.733 Problem:test_listchars breaks on MS-Windows. (Kenichi Ito) Solution: Set fileformat to unix. (Christian Brabandt) Files: src/testdir/test_listchars.in *** ../vim-7.4.732/src/testdir/test_listchars.in2015-04-21 18:33:33.906675754 +0200 ---

Re: patch to allow locking/unlocking the jump list

2015-06-09 Fir de Conversatie Carlo Baldassi
Hello! I'm wondering about how the patch(es) work -- is it a saverestore or is it a prevent-any-modification? I'm in favor of saverestore; prevent-any-modification is certainly going to cause problems. Hi! The lockjumps patch (filename: lkjcmd_patch.txt) does a prevent-any-modification

Patch 7.4.736

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.736 Problem:Invalid memory access. Solution: Avoid going over the end of a NUL terminated string. (Dominique Pelle) Files: src/regexp.c *** ../vim-7.4.735/src/regexp.c 2015-05-04 09:56:41.878096054 +0200 --- src/regexp.c2015-06-09 20:37:13.615725284

Re: Patch 7.4.338

2015-06-09 Fir de Conversatie Christian Brabandt
Hi Bram! On Do, 26 Jun 2014, Bram Moolenaar wrote: PS: Perhaps now it is time for me to try pushing the vartabs feature ;) Sorry, can't cope with more than one dangerous patch per year. :-) Okay, then let me nag you about it again ;) Best, Christian -- Auch in einem Königshaus lernt man

Re: patch to allow locking/unlocking the jump list

2015-06-09 Fir de Conversatie Charles Campbell
Carlo Baldassi wrote: Hello! I'm wondering about how the patch(es) work -- is it a saverestore or is it a prevent-any-modification? I'm in favor of saverestore; prevent-any-modification is certainly going to cause problems. Hi! The lockjumps patch (filename: lkjcmd_patch.txt) does a

Re: [patch] incrementing visually selected lines using Ctrl-A

2015-06-09 Fir de Conversatie Christian Brabandt
On Di, 09 Jun 2015, Bram Moolenaar wrote: Gary Johnson wrote: On 2015-06-08, Christian Brabandt wrote: That was described wrong. What I meant is, for an input such as this: 1 1 1 visually selecting the rows and pressing Ctrl-A will increment like this 2 3

Patch 7.4.737

2015-06-09 Fir de Conversatie Bram Moolenaar
Patch 7.4.737 Problem:On MS-Windows vimgrep over arglist doesn't work (Issue 361) Solution: Only escape backslashes in ## expansion when it is not used as the path separator. (James McCoy) Files: src/ex_docmd.c *** ../vim-7.4.736/src/ex_docmd.c 2015-04-21

Re: patch to allow locking/unlocking the jump list

2015-06-09 Fir de Conversatie Carlo Baldassi
I just realized that the keepjumps! patch I sent is not working correctly under some circumstances. A single backup list is not sufficient, it really needs to keep a stack of them in order to work properly. I'll make a new patch in a short while (unless I'm told it has zero chance of getting