Re: Patch 7.4.754

2015-07-10 Fir de Conversatie Urtica dioica
There was another one I meant to add but forgot. Numbered dot in block and line visual acts on an expanded region instead of changing the number argument. Line visual examples will be complicated by the changing visual area I mentioned earlier, but you can see what's going on. 1 1 1 1 1 --- V3.

Re: Patch 7.4.754

2015-07-10 Fir de Conversatie Urtica dioica
I've had some time to play with this patch. 1. Let's crash Vim. 8 --- v.xu Segmentation Fault 2. Visual areas change from dot repeats. gv can confirm the changed areas. 1 1 1 --- V. 3 2 1 --- 2$ 1323 1323 3. Dot repeat of g does nothing sensible. 0 0 0 0 --- VGg.. 4 3 4 5 4. W

Re: Patch 7.4.754

2015-07-10 Fir de Conversatie James McCoy
On Sat, Jul 11, 2015 at 12:19:22AM +0200, Christian Brabandt wrote: > > 7. The entire screen is redrawn every time, even for single-line edits that > > affect zero or one characters. > > Not sure what you mean. Since one starts visual mode, one needs to > redraw after visual mode ended. Sure, b

Re: [patch] Respect file's EOL/NOEOL settings

2015-07-10 Fir de Conversatie Christian Brabandt
Hi Bram! On Fr, 10 Jul 2015, Bram Moolenaar wrote: > The 'addeol' option indicates adding an EOL, also when there already was > one, that's confusing. We could call it 'fixeol', which would normally > be on. For some file formats for some systems it could be switched off, > so that the missing

Re: Patch 7.4.765

2015-07-10 Fir de Conversatie Christian Brabandt
Hi mattn! On Fr, 03 Jul 2015, mattn wrote: > > - > -1 > 1 > - > > select two lines, and type or . vim will crash. Yes, sorry. There was a check for col > 0 missing. The patch I just posted should fix it. Best, Christian -- Ein Mann kann schwere Lasten fassen, man darf ihn

Re: Patch 7.4.754

2015-07-10 Fir de Conversatie Christian Brabandt
Hi Urtica! On Mo, 29 Jun 2015, Urtica dioica wrote: > > Here is another update, that fixes the problem, that vim_str2nr always > > checks all available chars for numbers, making it impossible to select > > less numbers. > > I'm going from this patch. I've triggered a couple bugs where I couldn

Patch 7.4.778

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.778 Problem:Coverity warns for uninitialized variable. Solution: Change condition of assignment. Files: src/ops.c *** ../vim-7.4.777/src/ops.c2015-07-03 12:44:01.735748596 +0200 --- src/ops.c 2015-07-10 21:44:12.118882050 +0200 *** *** 5702,5711

Patch 7.4.777

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.777 Problem:The README file doesn't look nice on github. Solution: Add a markdown version of the README file. Files: Filelist, README.md *** ../vim-7.4.776/Filelist 2014-11-05 17:04:10.516530418 +0100 --- Filelist2015-07-10 16:29:19.472923927 +0200 *** **

Patch 7.4.776

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.776 Problem:Equivalence class for 'd' does not work correctly. Solution: Fix 0x1e0f and 0x1d0b. (Dominique Pelle) Files: src/regexp.c, src/regexp_nfa.c *** ../vim-7.4.775/src/regexp.c 2015-06-09 20:39:04.322545425 +0200 --- src/regexp.c2015-07-10 18:53:07.391711695 +

Re: Patch 7.4.771

2015-07-10 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > 2015/7/10 Fri 21:44:19 UTC+9 Bram Moolenaar wrote: > > Patch 7.4.771 > > Problem:Search does not handle multi-byte character at the start > > position > > correctly. > > Solution: Take byte size of character into account. (Yukihiro Nakadaira) > > Files:

Patch 7.4.775

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.775 Problem:It is not possible to avoid using the first item of completion. Solution: Add the "noinsert" and "noselect" values to 'completeopt'. (Shougo Matsu) Files: runtime/doc/options.txt, src/edit.c, src/option.c *** ../vim-7.4.774/runtime/doc/options.txt

Re: Issue 376 in vim: langmap applies to Command-line mappings

2015-07-10 Fir de Conversatie vim
Updates: Status: Fixed Comment #1 on issue 376 by brammool...@gmail.com: langmap applies to Command-line mappings https://code.google.com/p/vim/issues/detail?id=376 Patch included as 7.4.773 -- You received this message because this project is configured to send all issue notificat

Patch 7.4.774

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.774 Problem:When using the CompleteDone autocommand event it's difficult to get to the completed items. Solution: Add the v:completed_items variable. (Shougo Matsu) Files: runtime/doc/autocmd.txt, runtime/doc/eval.txt, src/edit.c, src/eval.c, src/macros

Re: Patch 7.4.771

2015-07-10 Fir de Conversatie Ken Takata
Hi Bram, 2015/7/10 Fri 21:44:19 UTC+9 Bram Moolenaar wrote: > Patch 7.4.771 > Problem:Search does not handle multi-byte character at the start position > correctly. > Solution: Take byte size of character into account. (Yukihiro Nakadaira) > Files: src/search.c, src/testdir/

Patch 7.4.773

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.773 Problem:'langmap' is used in command-line mode when checking for mappings. Issue 376. Solution: Do not use 'langmap' in command-line mode. (Larry Velazquez) Files: src/getchar.c, src/testdir/test_mapping.in, src/testdir/test_mapping.ok *** ../vim-

Weird output when entering Insert mode in "Ex" mode on Windows

2015-07-10 Fir de Conversatie hattya
Steps to reproduce: C:\>type test.vim execute "normal! ihi\\" for i in range(10) verbose echo i endfor qall! C:\>vim -u NONE -i NONE -N -e -s --cmd "so test.vim" The numbers are printed from the left upper of the Command Prompt, and after that it gives weird output.

Patch 7.4.772

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.772 Problem:Racket 6.2 is not supported on MS-Windows. Solution: Check for the "racket" subdirectory. (Weiyong Mao) Files: src/Make_mvc.mak, src/if_mzsch.c *** ../vim-7.4.771/src/Make_mvc.mak 2015-06-25 16:13:37.779750062 +0200 --- src/Make_mvc.mak2015-07-10 16:00:35

Patch 7.4.771

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.771 Problem:Search does not handle multi-byte character at the start position correctly. Solution: Take byte size of character into account. (Yukihiro Nakadaira) Files: src/search.c, src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak, src/testdir/Make

Re: search('multi-byte char', 'bce') does not match at cursor position.

2015-07-10 Fir de Conversatie Bram Moolenaar
Yukihiro Nakadaira wrote: > search('multi-byte char', 'bce') does not match at cursor position. > > Steps to reproduce: > > $ vim -u NONE > :set encoding=utf-8 > :call setline(1, "\uff21") > :echo search("\uff21", "bceW") " no wrap scan > 0 > > Expected: > > 1 > > I think that t

Patch 7.4.770

2015-07-10 Fir de Conversatie Bram Moolenaar
Patch 7.4.770 (after 7.4.766) Problem:Background color response with transparency is not ignored. Solution: Change the way escape sequences are recognized. (partly by Hirohito Higashi) Files: src/ascii.h, src/term.c *** ../vim-7.4.769/src/ascii.h 2011-12-17 21:38:36.0

Re: Patch 7.4.757

2015-07-10 Fir de Conversatie Bram Moolenaar
Hirohito Higashi wrote: [...] > > > BTW... > > > > > But when we get ESC]11; and then no BEL or ESC\ follows, we never get > > > > > out of this loop, we run into the "not enough characters" part > > > > > forever. > > > > > > This problem is also in the process of the current of CSI and DCS.

Re: [patch] Respect file's EOL/NOEOL settings

2015-07-10 Fir de Conversatie Bram Moolenaar
Olaf Dabrunz wrote: > I think this is one way to do this. > > However, I believe the final EOL in a file should be made visible and > editable. > > Consider this: > > file A file B > > ,---. ,---. > |...