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

Skip to content

Tags: ebfe/vim

Tags

v7.4.1386

Toggle v7.4.1386's commit message
patch 7.4.1386

Problem:    When the Job exit callback is invoked, the job may be freed too
            soon. (Yasuhiro Matsumoto)
Solution:   Increase refcount.

v7.4.1385

Toggle v7.4.1385's commit message
patch 7.4.1385

Problem:    Compiler warning for using array.
Solution:   Use the right member name. (Yegappan Lakshmanan)

v7.4.1384

Toggle v7.4.1384's commit message
patch 7.4.1384

Problem:    It is not easy to use a set of plugins and their dependencies.
Solution:   Add packages, ":loadopt", 'packpath'.

v7.4.1383

Toggle v7.4.1383's commit message
patch 7.4.1383

Problem:    GvimExt only loads the old libintl.dll.
Solution:   Also try loading libint-8.dll. (Ken Takata, closes vim#608)

v7.4.1382

Toggle v7.4.1382's commit message
patch 7.4.1382

Problem:    Can't get the job of a channel.
Solution:   Add ch_getjob().

v7.4.1381

Toggle v7.4.1381's commit message
patch 7.4.1381

Problem:    Exit value not available on MS-Windows.
Solution:   Set the exit value.

v7.4.1380

Toggle v7.4.1380's commit message
patch 7.4.1380

Problem:    The job exit callback is not implemented.
Solution:   Add the "exit-cb" option.

v7.4.1379

Toggle v7.4.1379's commit message
patch 7.4.1379

Problem:    Channel test fails on Win32 console.
Solution:   Don't sleep when timeout is zero. Call channel_wait() before
            channel_read(). Channels are not polled during ":sleep". (Yukihiro
            Nakadaira)

v7.4.1378

Toggle v7.4.1378's commit message
patch 7.4.1378

Problem:    Can't change job settings after it started.
Solution:   Add job_setoptions() with the "stoponexit" flag.

v7.4.1377

Toggle v7.4.1377's commit message
patch 7.4.1377

Problem:    Test_connect_waittime() is flaky.
Solution:   Ignore the "Connection reset by peer" error.