Skip to content

Tags: datsuns/vim

Tags

v7.4.1883

Toggle v7.4.1883's commit message
patch 7.4.1883

Problem:    Cppcheck found 2 incorrect printf formats.
Solution:   Use %ld and %lx. (Dominique Pelle)

v7.4.1882

Toggle v7.4.1882's commit message
patch 7.4.1882

Problem:    Check for line break at end of line wrong. (Dominique Pelle)
Solution:   Correct the logic.

v7.4.1881

Toggle v7.4.1881's commit message
patch 7.4.1881

Problem:    Appending to a long quickfix list is slow.
Solution:   Add qf_last.

v7.4.1880

Toggle v7.4.1880's commit message
patch 7.4.1880

Problem:    MS-Windows console build defaults to not having +channel.
Solution:   Include the channel feature if building with huge features.

v7.4.1879

Toggle v7.4.1879's commit message
patch 7.4.1879

Problem:    Channel test is flaky.
Solution:   Wait for close_cb to be invoked.

v7.4.1878

Toggle v7.4.1878's commit message
patch 7.4.1878

Problem:    Whether a job has exited isn't detected until a character is
            typed.  After calling exit_cb the cursor is in the wrong place.
Solution:   Don't wait forever for a character to be typed when there is a
            pending job.  Update the screen if neede after calling exit_cb.

v7.4.1877

Toggle v7.4.1877's commit message
patch 7.4.1877

Problem:    No test for invoking "close_cb" when writing to a buffer.
Solution:   Add using close_cb to a test case.

v7.4.1876

Toggle v7.4.1876's commit message
patch 7.4.1876

Problem:    Typing "k" at the hit-enter prompt has no effect.
Solution:   Don't assume recursive use of the prompt if a character was typed.
            (Hirohito Higashi)

v7.4.1875

Toggle v7.4.1875's commit message
patch 7.4.1875

Problem:    Comparing functions and partials doesn't work well.
Solution:   Add tests. (Nikolai Pavlov)  Compare the dict and arguments in the
            partial. (closes vim#813)

v7.4.1874

Toggle v7.4.1874's commit message
patch 7.4.1874

Problem:    Unused variable in Win32 code.
Solution:   Remove it. (Mike Williams)