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

Skip to content

Tags: bryant/vim

Tags

v7.4.1934

Toggle v7.4.1934's commit message
patch 7.4.1934

Problem:    New style tests not executed with MinGW compiler.
Solution:   Add new style test support. (Yegappan Lakshmanan)

v7.4.1933

Toggle v7.4.1933's commit message
patch 7.4.1933

Problem:    Compiler warning about uninitialzed variable. (Yegappan)
Solution:   Give it a dummy value.

v7.4.1932

Toggle v7.4.1932's commit message
patch 7.4.1932

Problem:    When writing viminfo the jumplist is not merged with the one in
            the viminfo file.
Solution:   Merge based on timestamp.

v7.4.1931

Toggle v7.4.1931's commit message
patch 7.4.1931

Problem:    Using both old and new style file mark lines from viminfo.
Solution:   Skip the old style lines if the viminfo file was written with a
            Vim version that supports the new style.

v7.4.1930

Toggle v7.4.1930's commit message
patch 7.4.1930

Problem:    Can't build without +spell but with +quickfix. (Charles)
Solution:   Add better #ifdef around ml_append_buf(). (closes vim#864)

v7.4.1929

Toggle v7.4.1929's commit message
patch 7.4.1929

Problem:    Inconsistent indenting and weird name.
Solution:   Fix indent, make name all upper case. (Ken Takata)

v7.4.1928

Toggle v7.4.1928's commit message
patch 7.4.1928

Problem:    Overwriting pointer argument.
Solution:   Assign to what it points to. (Dominique Pelle)

v7.4.1927

Toggle v7.4.1927's commit message
patch 7.4.1927

Problem:    Compiler warning for signed/unsigned.
Solution:   Add type cast.

v7.4.1926

Toggle v7.4.1926's commit message
patch 7.4.1926

Problem:    Possible crash with many history items.
Solution:   Avoid the index going past the last item.

v7.4.1925

Toggle v7.4.1925's commit message
patch 7.4.1925

Problem:    Viminfo does not merge file marks properly.
Solution:   Use a timestamp.  Add the :clearjumps command.