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

Skip to content

Tags: sevensunsd/vim

Tags

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.

v8.0.0140

Toggle v8.0.0140's commit message
patch 8.0.0140

Problem:    Pasting inserted text in Visual mode does not work properly.
            (Matthew Malcomson)
Solution:   Stop Visual mode before stuffing the inserted text. (Christian
            Brabandt, from neovim vim#5709)

v8.0.0139

Toggle v8.0.0139's commit message
patch 8.0.0139

Problem:    Warning for unused argument.
Solution:   Add UNUSED.

v8.0.0138

Toggle v8.0.0138's commit message
patch 8.0.0138

Problem:    Small build fails.
Solution:   Add #ifdef.

v8.0.0137

Toggle v8.0.0137's commit message
patch 8.0.0137

Problem:    When 'maxfuncdepth' is set above 200 the nesting is limited to
            200. (Brett Stahlman)
Solution:   Allow for Ex command recursion depending on 'maxfuncdepth'.

v8.0.0136

Toggle v8.0.0136's commit message
patch 8.0.0136

Problem:    When using indent folding and changing indent the wrong fold is
            opened. (Jonathan Fudger)
Solution:   Open the fold under the cursor a bit later. (Christian Brabandt)

v8.0.0135

Toggle v8.0.0135's commit message
patch 8.0.0135

Problem:    An address relative to the current line, ":.,+3y", does not work
            properly on a closed fold. (Efraim Yawitz)
Solution:   Correct for including the closed fold. (Christian Brabandt)

v8.0.0134

Toggle v8.0.0134's commit message
patch 8.0.0134

Problem:    Null pointer access reported by UBsan.
Solution:   Check curwin->w_buffer is not NULL. (Yegappan Lakshmanan)

v8.0.0133

Toggle v8.0.0133's commit message
patch 8.0.0133

Problem:    "2;'(" causes ml_get errors in an empty buffer.  (Dominique Pelle)
Solution:   Check the cursor line earlier.