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

Skip to content

Tags: tn-osimis/vim

Tags

v7.4.1862

Toggle v7.4.1862's commit message
patch 7.4.1862

Problem:    string() with repeated argument does not give a result usable by
            eval().
Solution:   Refactor echo_striong and tv2string(), moving the common part to
            echo_string_core(). (Ken Takata)

v7.4.1861

Toggle v7.4.1861's commit message
patch 7.4.1861

Problem:    Compiler warnings with 64 bit compiler.
Solution:   Change int to size_t. (Mike William)

v7.4.1860

Toggle v7.4.1860's commit message
patch 7.4.1860

Problem:    Using a partial for timer_start() may cause a crash.
Solution:   Set the copyID in timer objects. (Ozaki Kiichi)

v7.4.1859

Toggle v7.4.1859's commit message
patch 7.4.1859

Problem:    Cannot use a function reference for "exit_cb".
Solution:   Use get_callback(). (Yegappan Lakshmanan)

v7.4.1858

Toggle v7.4.1858's commit message
patch 7.4.1858

Problem:    When a channel writes to a buffer it doesn't find a buffer by the
            short name but re-uses it anyway.
Solution:   Find buffer also by the short name.

v7.4.1857

Toggle v7.4.1857's commit message
patch 7.4.1857

Problem:    When a channel appends to a buffer that is 'nomodifiable' there is
            an error but appending is done anyway.
Solution:   Add the 'modifiable' option.  Refuse to write to a 'nomodifiable'
            when the value is 1.

v7.4.1856

Toggle v7.4.1856's commit message
patch 7.4.1856

Problem:    failing job test fails on MS-Windows.
Solution:   Expect "fail" status instead of "dead".

v7.4.1855

Toggle v7.4.1855's commit message
patch 7.4.1855

Problem:    Valgrind reports memory leak for job that is not freed.
Solution:   Free all jobs on exit.  Add test for failing job.

v7.4.1854

Toggle v7.4.1854's commit message
patch 7.4.1854

Problem:    When setting 'termguicolors' the Ignore highlighting doesn't work.
            (Charles Campbell)
Solution:   Handle the color names "fg" and "bg" when the GUI isn't running
            and no colors are speficied, fall back to black and white.

v7.4.1853

Toggle v7.4.1853's commit message
patch 7.4.1853

Problem:    Crash when job and channel are in the same dict while using
            partials. (Luc Hermitte)
Solution:   Do not decrement the channel reference count too early.