Skip to content

Tags: Bohr-H/vim

Tags

v8.0.1826

Toggle v8.0.1826's commit message
patch 8.0.1826: configure uses old compiler flag

Problem:    Configure uses old compiler flag.
Solution:   Remove _DARWIN_C_SOURCE. (Kazunobu Kuriyama)

v8.0.1825

Toggle v8.0.1825's commit message
patch 8.0.1825: might use NULL pointer when out of memory

Problem:    Might use NULL pointer when out of memory. (Coverity)
Solution:   Handle NULL pointer better.

v8.0.1824

Toggle v8.0.1824's commit message
patch 8.0.1824: Coverity warns for variable that may be uninitialized

Problem:    Coverity warns for variable that may be uninitialized.
Solution:   Initialize the variable.

v8.0.1823

Toggle v8.0.1823's commit message
patch 8.0.1823: test for terminal stdout redirection is flaky

Problem:    Test for terminal stdout redirection is flaky.
Solution:   Wait for the job to finish.

v8.0.1822

Toggle v8.0.1822's commit message
patch 8.0.1822: make uninstall does not remove colors/tools

Problem:    Make uninstall does not remove colors/tools.
Solution:   Add a line to delete the tools directory. (Kazunobu Kuriyama)

v8.0.1821

Toggle v8.0.1821's commit message
patch 8.0.1821: cursor in terminal window moves when pressing CTRL-W

Problem:    Cursor in terminal window moves when pressing CTRL-W. (Dominique
            Pelle)
Solution:   Do not more the cursor or redraw when not in Terminal-Normal mode.
            (closes vim#2904)

v8.0.1820

Toggle v8.0.1820's commit message
patch 8.0.1820: terminal window redirecting stdout does not show stderr

Problem:    Terminal window redirecting stdout does not show stderr. (Matéo
            Zanibelli)
Solution:   When stdout is not connected to pty_master_fd then use it for
            stderr. (closes vim#2903)

v8.0.1819

Toggle v8.0.1819's commit message
patch 8.0.1819: swap file warning for file with non-existing directory

Problem:    Swap file warning for a file in a non-existing directory, if there
            is another with the same file name. (Juergen Weigert)
Solution:   When expanding the file name fails compare the file names.

v8.0.1818

Toggle v8.0.1818's commit message
patch 8.0.1818: lines remove from wrong buffer when using terminal wi…

…ndow

Problem:    Lines remove from wrong buffer when using terminal window.
Solution:   Make sure to use tl_buffer.

v8.0.1817

Toggle v8.0.1817's commit message
patch 8.0.1817: a timer may change v:count unexpectedly

Problem:    A timer may change v:count unexpectedly.
Solution:   Save and restore v:count and similar variables when a timer
            callback is invoked. (closes vim#2897)