Issue 358 in vim: UI: add standard font zoom key bindings

2015-05-04 Fir de Conversatie vim
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 358 by peter.ec...@gmail.com: UI: add standard font zoom key bindings https://code.google.com/p/vim/issues/detail?id=358 Control shift + and - are becoming standard key bindings for zooming in and out, supported by

Patch 7.4.713

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.713 Problem:Wrong condition for #ifdef. Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier) Files: src/os_unix.h *** ../vim-7.4.712/src/os_unix.h2015-04-09 22:08:09.183074550 +0200 --- src/os_unix.h 2015-05-03 19:07:22.850147859 +0200

Patch 7.4.714

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.714 Problem:Illegal memory access when there are illegal bytes. Solution: Check the byte length of the character. (Dominique Pelle) Files: src/regexp.c *** ../vim-7.4.713/src/regexp.c 2015-04-21 14:02:28.489694393 +0200 --- src/regexp.c2015-05-04 09:50:52.694084997

Patch 7.4.715

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.715 Problem:Invalid memory access when there are illegal bytes. Solution: Get the length from the text, not from the character. (Dominique Pelle) Files: src/regexp_nfa.c *** ../vim-7.4.714/src/regexp_nfa.c 2015-04-13 15:28:00.108492965 +0200 ---

Patch 7.4.716

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.716 Problem:When using the 'c' flag of :substitute and selecting a or l at the prompt the flags are not remembered for :. (Ingo Karkat) Solution: Save the flag values and restore them. (Hirohito Higashi) Files: src/ex_cmds.c ***

Patch 7.4.717

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.717 Problem::let list += list can change a locked list. Solution: Check for the lock earlier. (Olaf Dabrunz) Files: src/eval.c, src/testdir/test55.in, src/testdir/test55.ok *** ../vim-7.4.716/src/eval.c 2015-04-21 16:48:55.028917216 +0200 --- src/eval.c 2015-05-04

Re: BUG: :substitute answers (a)ll / (l)ast affect c / g flags on repetition with g and :

2015-05-04 Fir de Conversatie Ingo Karkat
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03-May-2015 03:52, h_east wrote: Hello Ingo! 2015/5/3(Sun) 4:46:50 UTC+9 Ingo Karkat: Hello Vim developers, if you do a :substitute/foo/bar/c and then choose (a)ll as the answer, a repeat of the substitution via g or : does not confirm each

Patch 7.4.718

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.718 Problem:Autocommands triggered by quickfix cannot get the current title value. Solution: Set w:quickfix_title earlier. (Yannick) Also move the check for a title into the function. Files: src/quickfix.c *** ../vim-7.4.717/src/quickfix.c

Patch 7.4.719

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.719 Problem:Overflow when adding MAXCOL to a pointer. Solution: Subtract pointers instead. (James McCoy) Files: src/screen.c *** ../vim-7.4.718/src/screen.c 2015-04-21 18:33:33.902675797 +0200 --- src/screen.c2015-05-04 16:02:20.530421566 +0200 *** ***

Patch 7.4.720

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.720 Problem:Can't build with Visual Studio 2015. Solution: Recognize the version 14 numbers and omit /nodefaultlib when appropriate. (Paul Moore) Files: src/Make_mvc.mak *** ../vim-7.4.719/src/Make_mvc.mak 2014-11-05 13:53:13.188806497 +0100 ---

Patch 7.4.721

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.721 Problem:When 'list' is set Visual mode does not highlight anything in empty lines. (mgaleski) Solution: Check the value of lcs_eol in another place. (Christian Brabandt) Files: src/screen.c *** ../vim-7.4.720/src/screen.c 2015-05-04 16:10:21.39727 +0200

Patch 7.4.722

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.722 Problem:0x202f is not recognized as a non-breaking space character. Solution: Add 0x202f to the list. (Christian Brabandt) Files: runtime/doc/options.txt, src/message.c, src/screen.c *** ../vim-7.4.721/runtime/doc/options.txt 2015-04-21 18:33:33.902675797 +0200

Patch 7.4.723

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.723 Problem:For indenting, finding the C++ baseclass can be slow. Solution: Cache the result. (Hirohito Higashi) Files: src/misc1.c *** ../vim-7.4.722/src/misc1.c 2015-03-31 13:33:00.797524914 +0200 --- src/misc1.c 2015-05-04 17:45:41.108783310 +0200 *** ***

Patch 7.4.723

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.723 Problem:For indenting, finding the C++ baseclass can be slow. Solution: Cache the result. (Hirohito Higashi) Files: src/misc1.c *** ../vim-7.4.722/src/misc1.c 2015-03-31 13:33:00.797524914 +0200 --- src/misc1.c 2015-05-04 17:45:41.108783310 +0200 *** ***

Re: Patch 7.4.721

2015-05-04 Fir de Conversatie Christian Brabandt
Hi Bram! On Mo, 04 Mai 2015, Bram Moolenaar wrote: Patch 7.4.721 Problem:When 'list' is set Visual mode does not highlight anything in empty lines. (mgaleski) Solution: Check the value of lcs_eol in another place. (Christian Brabandt) Files: src/screen.c That one

Re: Patch 7.4.721

2015-05-04 Fir de Conversatie Christian Brabandt
On Mo, 04 Mai 2015, Christian Brabandt wrote: Hi Bram! On Mo, 04 Mai 2015, Bram Moolenaar wrote: Patch 7.4.721 Problem:When 'list' is set Visual mode does not highlight anything in empty lines. (mgaleski) Solution: Check the value of lcs_eol in another place.

Re: Patch 7.4.721

2015-05-04 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: Hi Bram! On Mo, 04 Mai 2015, Bram Moolenaar wrote: Patch 7.4.721 Problem:When 'list' is set Visual mode does not highlight anything in empty lines. (mgaleski) Solution: Check the value of lcs_eol in another place. (Christian

Patch 7.4.724

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.724 Problem:Vim icon does not show in Windows context menu. (issue 249) Solution: Load the icon in GvimExt. Files: src/GvimExt/gvimext.cpp, src/GvimExt/gvimext.h *** ../vim-7.4.723/src/GvimExt/gvimext.cpp 2013-05-06 04:06:04.0 +0200 --- src/GvimExt/gvimext.cpp

Re: Issue 249 in vim: Include icon in Windows context menu

2015-05-04 Fir de Conversatie vim
Updates: Status: Fixed Comment #6 on issue 249 by chrisbr...@googlemail.com: Include icon in Windows context menu https://code.google.com/p/vim/issues/detail?id=249 fixed in 7.4.724 -- You received this message because this project is configured to send all issue notifications to

Re: Issue 357 in vim: Cannot build vim/gvim on Windows 8 with Visual Studio 2015

2015-05-04 Fir de Conversatie vim
Updates: Status: Fixed Comment #3 on issue 357 by chrisbr...@googlemail.com: Cannot build vim/gvim on Windows 8 with Visual Studio 2015 https://code.google.com/p/vim/issues/detail?id=357 fixed by 7.4.720 -- You received this message because this project is configured to send all

Re: Patch 7.4.724

2015-05-04 Fir de Conversatie Christian J. Robinson
I'm no longer able to build GvimExt: /usr/lib/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/bin/ld: i386 architecture of input file `gvimext.res' is incompatible with i386:x86-64 output gvimext.o:gvimext.cpp:(.text+0xf5c): undefined reference to `__imp_CreateCompatibleDC'

Re: Patch 7.4.724

2015-05-04 Fir de Conversatie Bram Moolenaar
Christian J. Robinson wrote: I'm no longer able to build GvimExt: /usr/lib/gcc/x86_64-w64-mingw32/4.8.3/../../../../x86_64-w64-mingw32/bin/ld: i386 architecture of input file `gvimext.res' is incompatible with i386:x86-64 output gvimext.o:gvimext.cpp:(.text+0xf5c): undefined

Re: Crash when new tags file loaded while waiting for tag selection

2015-05-04 Fir de Conversatie Bram Moolenaar
Benjamin Fritz wrote: The attached test_vimrc.vim sets up a command that (on Windows) generates a tags file asynchronously and then calls back into Vim using --remote-expr to add that tags file to the 'tags' option. The test_vimrc.vim also sets the 'cscopetag' option to enable selecting

Patch 7.4.725

2015-05-04 Fir de Conversatie Bram Moolenaar
Patch 7.4.725 Problem::call setreg('', []) reports an internal error. Solution: Make the register empty. (Yasuhiro Matsumoto) Files: src/ops.c *** ../vim-7.4.724/src/ops.c2015-02-03 18:36:40.401033677 +0100 --- src/ops.c 2015-05-04 20:13:12.357598140 +0200 *** ***

Re: Crash when new tags file loaded while waiting for tag selection

2015-05-04 Fir de Conversatie Benjamin Fritz
On Mon, May 4, 2015 at 1:05 PM, Bram Moolenaar b...@moolenaar.net wrote: Benjamin Fritz wrote: The attached test_vimrc.vim sets up a command that (on Windows) generates a tags file asynchronously and then calls back into Vim using --remote-expr to add that tags file to the 'tags'

Issue 359 in vim: Search hilighting does not update properly when changing the visual region.

2015-05-04 Fir de Conversatie vim
Status: New Owner: Labels: Type-Defect Priority-Medium New issue 359 by random...@gmail.com: Search hilighting does not update properly when changing the visual region. https://code.google.com/p/vim/issues/detail?id=359 What steps will reproduce the problem? 1. Enable hlsearch and

Re: Issue 78 in vim: :set spell spelllang=en acts strangely after :ownsyntax txt

2015-05-04 Fir de Conversatie vim
Comment #3 on issue 78 by jke...@connectwise.com: :set spell spelllang=en acts strangely after :ownsyntax txt https://code.google.com/p/vim/issues/detail?id=78 This did not fix the following case: gvim -u NONE -N Insert some text: foo bar baz :syntax on :set spell spelllang=en (OK:

Re: Crash when new tags file loaded while waiting for tag selection

2015-05-04 Fir de Conversatie Bram Moolenaar
Benjamin Fritz wrote: The attached test_vimrc.vim sets up a command that (on Windows) generates a tags file asynchronously and then calls back into Vim using --remote-expr to add that tags file to the 'tags' option. The test_vimrc.vim also sets the 'cscopetag' option to enable