Skip to content

Tags: ebfe/vim

Tags

v7.4.1356

Toggle v7.4.1356's commit message
patch 7.4.1356

Problem:    Job and channel options parsing is scattered.
Solution:   Move all option value parsing to get_job_options();

v7.4.1355

Toggle v7.4.1355's commit message
patch 7.4.1355

Problem:    Win32 console and GUI handle channels differently.
Solution:   Consolidate code between Win32 console and GUI.

v7.4.1354

Toggle v7.4.1354's commit message
patch 7.4.1354

Problem:    MS-Windows: Mismatch between default compile options and what the
            code expects.
Solution:   Change the default WINVER from 0x0500 to 0x0501. (Ken Takata)

v7.4.1353

Toggle v7.4.1353's commit message
patch 7.4.1353

Problem:    Test_connect_waittime is skipped for MS-Windows.
Solution:   Add the test back, it works now.

v7.4.1352

Toggle v7.4.1352's commit message
patch 7.4.1352

Problem:    The test script lists all functions before executing them.
Solution:   Only list the function currently being executed.

v7.4.1351

Toggle v7.4.1351's commit message
patch 7.4.1351

Problem:    When the port isn't opened yet when ch_open() is called it may
            fail instead of waiting for the specified time.
Solution:   Loop when select() succeeds but when connect() failed. Also use
            channel logging for jobs.  Add ch_log().

v7.4.1350

Toggle v7.4.1350's commit message
patch 7.4.1350

Problem:    When the test server fails to start Vim hangs.
Solution:   Check that there is actually something to read from the tty fd.

v7.4.1349

Toggle v7.4.1349's commit message
patch 7.4.1349

Problem:    And some more MingW compiler warnings. (Cesar Romani)
Solution:   Add type casts.

v7.4.1348

Toggle v7.4.1348's commit message
patch 7.4.1348

Problem:    More compiler warnings. (John Marriott)
Solution:   Add type casts, remove unused variable.

v7.4.1347

Toggle v7.4.1347's commit message
patch 7.4.1347

Problem:    When there is any error Vim will use a non-zero exit code.
Solution:   When using ":silent!" do not set the exit code. (Yasuhiro
            Matsumoto)