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

Skip to content

Tags: netj/vim

Tags

v7.4.1910

Toggle v7.4.1910's commit message
patch 7.4.1910

Problem:    Tests using external command to delete directory.
Solution:   Use delete().

v7.4.1909

Toggle v7.4.1909's commit message
patch 7.4.1909

Problem:    Doubled semicolons.
Solution:   Reduce to one. (Dominique Pelle)

v7.4.1908

Toggle v7.4.1908's commit message
patch 7.4.1908

Problem:    Netbeans uses uninitialzed pointer and freed memory.
Solution:   Set "buffer" at the right place (hint by Ken Takata)

v7.4.1907

Toggle v7.4.1907's commit message
patch 7.4.1907

Problem:    Warnings from 64 bit compiler.
Solution:   Change type to size_t. (Mike Williams)

v7.4.1906

Toggle v7.4.1906's commit message
patch 7.4.1906

Problem:    Collapsing channel buffers and searching for NL does not work
            properly. (Xavier de Gary, Ramel Eshed)
Solution:   Do not assume the buffer contains a NUL or not.  Change NUL bytes
            to NL to avoid the string is truncated.

v7.4.1905

Toggle v7.4.1905's commit message
patch 7.4.1905

Problem:    Some compilers can't handle a double semicolon.
Solution:   Remove one semicolon.

v7.4.1904

Toggle v7.4.1904's commit message
patch 7.4.1904

Problem:    Build fails.
Solution:   Add missing changes.

v7.4.1903

Toggle v7.4.1903's commit message
patch 7.4.1903

Problem:    When writing viminfo merging current history with history in
            viminfo may drop recent history entries.
Solution:   Add new format for viminfo lines, use it for history entries.  Use
            a timestamp for ordering the entries. Add test_settime().
            Add the viminfo version.  Does not do merging on timestamp yet.

v7.4.1902

Toggle v7.4.1902's commit message
patch 7.4.1902

Problem:    No test for collapsing buffers for a channel.  Some text is lost.
Solution:   Add a simple test.  Set rq_buflen correctly.

v7.4.1901

Toggle v7.4.1901's commit message
patch 7.4.1901

Problem:    Win32: the "Disabled" menu items would appear enabled.
Solution:   Use submenu_id if there is a parent. (Shane Harper, closes vim#834)