Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: fwalch/vim

Tags

v7.4.1752

Toggle v7.4.1752's commit message
patch 7.4.1752

Problem:    When adding to the quickfix list the current position is reset.
Solution:   Do not reset the position when not needed. (Yegappan Lakshmanan)

v7.4.1751

Toggle v7.4.1751's commit message
patch 7.4.1751

Problem:    Crash when 'tagstack' is off. (Dominique Pelle)
Solution:   Fix it. (Hirohito Higashi)

v7.4.1750

Toggle v7.4.1750's commit message
patch 7.4.1750

Problem:    When a buffer gets updated while in command line mode, the screen
            may be messed up.
Solution:   Postpone the redraw when the screen is scrolled.

v7.4.1749

Toggle v7.4.1749's commit message
patch 7.4.1749

Problem:    When using GTK 3.20 there are a few warnings.
Solution:   Use new functions when available. (Kazunobu Kuriyama)

v7.4.1748

Toggle v7.4.1748's commit message
patch 7.4.1748

Problem:    "gD" does not find match in first column of first line. (Gary
            Johnson)
Solution:   Accept match at the cursor.

v7.4.1747

Toggle v7.4.1747's commit message
patch 7.4.1747

Problem:    Coverity: missing check for NULL pointer.
Solution:   Check for out of memory.

v7.4.1746

Toggle v7.4.1746's commit message
patch 7.4.1746

Problem:    Memory leak in Perl.
Solution:   Decrement the reference count.  Add a test. (Damien)

v7.4.1745

Toggle v7.4.1745's commit message
patch 7.4.1745

Problem:    README file is not clear about where to get Vim.
Solution:   Add links to github, releases and the Windows installer.
            (Suggested by Christian Brabandt)

v7.4.1744

Toggle v7.4.1744's commit message
patch 7.4.1744

Problem:    Python: Converting a sequence may leak memory.
Solution:   Decrement a reference. (Nikolay Pavlov)

v7.4.1743

Toggle v7.4.1743's commit message
patch 7.4.1743

Problem:    Clang warns for uninitialzed variable. (Michael Jarvis)
Solution:   Initialize it.