Skip to content

Tags: TengShow/vim

Tags

v7-4-728

Toggle v7-4-728's commit message
patch 7.4.728

Problem:    Can't build with some version of Visual Studio 2015.
Solution:   Recognize another version 14 number. (Sinan)

v7-4-727

Toggle v7-4-727's commit message
patch 7.4.727

Problem:    Cannot build GvimExt with MingW.
Solution:   Add -lgdi32.  (KF Leong)

v7-4-726

Toggle v7-4-726's commit message
patch 7.4.726

Problem:    Cannot build GvimExt.
Solution:   Set APPVER to 5.0.  (KF Leong)

v7-4-725

Toggle v7-4-725's commit message
patch 7.4.725

Problem:    ":call setreg('"', [])" reports an internal error.
Solution:   Make the register empty. (Yasuhiro Matsumoto)

v7-4-724

Toggle v7-4-724's commit message
patch 7.4.724

Problem:    Vim icon does not show in Windows context menu. (issue 249)
Solution:   Load the icon in GvimExt.

v7-4-723

Toggle v7-4-723's commit message
patch 7.4.723

Problem:    For indenting, finding the C++ baseclass can be slow.
Solution:   Cache the result. (Hirohito Higashi)

v7-4-722

Toggle v7-4-722's commit message
patch 7.4.722

Problem:    0x202f is not recognized as a non-breaking space character.
Solution:   Add 0x202f to the list. (Christian Brabandt)

v7-4-720

Toggle v7-4-720's commit message
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)

v7-4-719

Toggle v7-4-719's commit message
patch 7.4.719

Problem:    Overflow when adding MAXCOL to a pointer.
Solution:   Subtract pointers instead. (James McCoy)

v7-4-718

Toggle v7-4-718's commit message
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.