Skip to content

Tags: sonictk/vim

Tags

v8.0.0150

Toggle v8.0.0150's commit message
patch 8.0.0150: completion for :filter does not skip the pattern

Problem:    When the pattern of :filter does not have a separator then
            completion of the command fails.
Solution:   Skip over the pattern. (Ozaki Kiichi, clodes vim#1299)

v8.0.0149

Toggle v8.0.0149's commit message
patch 8.0.0149: :earlier does not work after reading the undo file

Problem:    ":earlier" and ":later" do not work after startup or reading the
            undo file.
Solution:   Use absolute time stamps instead of relative to the Vim start
            time. (Christian Brabandt, Pavel Juhas, closes vim#1300, closes
            vim#1254)

v8.0.0148

Toggle v8.0.0148's commit message
patch 8.0.0148: wrong indent in C preprocessor with line continuation

Problem:    When a C preprocessor statement has two line continuations the
            following line does not have the right indent. (Ken Takata)
Solution:   Add the indent of the previous continuation line. (Hirohito
            Higashi)

v8.0.0147

Toggle v8.0.0147's commit message
patch 8.0.0147: searchpair() fails when 'magic' is off

Problem:    searchpair() does not work when 'magic' is off. (Chris Paul)
Solution:   Add \m in the pattern. (Christian Brabandt, closes vim#1341)

v8.0.0146

Toggle v8.0.0146's commit message
patch 8.0.0146: termguicolors uses wrong colors on MS-Windows with Co…

…nEmu

Problem:    When using 'termguicolors' on MS-Windows the RGB definition causes
            the colors to be wrong.
Solution:   Undefined RGB and use our own. (Gabriel Barta)

v8.0.0145

Toggle v8.0.0145's commit message
patch 8.0.0145: running tests on MS-Windows is noisy

Problem:    Running tests on MS-Windows is a little bit noisy.
Solution:   Redirect some output to "nul". (Ken Takata)

v8.0.0144

Toggle v8.0.0144's commit message
patch 8.0.0144: when using MSVC the GvimExt directory is cleaned twice

Problem:    When using MSVC the GvimExt directory is cleaned twice.
Solution:   Remove the lines. (Ken Takata)

v8.0.0143

Toggle v8.0.0143's commit message
patch 8.0.0143: line number of current buffer in getbufinfo() is wrong

Problem:    Line number of current buffer in getbufinfo() is wrong.
Solution:   For the current buffer use the current line number. (Ken Takata)

v8.0.0142

Toggle v8.0.0142's commit message
patch 8.0.0142

Problem:    Normal colors are wrong with 'termguicolors'.
Solution:   Initialize to INVALCOLOR instead of zero. (Ben Jackson, closes
            vim#1344)

v8.0.0141

Toggle v8.0.0141's commit message
patch 8.0.0141

Problem:    Nested function test fails on AppVeyor.
Solution:   Disable the test on Windows for now.