Skip to content

Tags: yygr/vim

Tags

v8.0.0297

Toggle v8.0.0297's commit message
patch 8.0.0297: double free on exit when using a closure

Problem:    Double free on exit when using a closure. (James McCoy)
Solution:   Split free_al_functions in two parts. (closes vim#1428)

v8.0.0296

Toggle v8.0.0296's commit message
patch 8.0.0296: bracketed paste can only append, not insert

Problem:    Bracketed paste can only append, not insert.
Solution:   When the cursor is in the first column insert the text.

v8.0.0295

Toggle v8.0.0295's commit message
patch 8.0.0295: test_viml hangs

Problem:    test_viml hangs.
Solution:   Put resetting 'more' before sourcing the script.

v8.0.0294

Toggle v8.0.0294's commit message
patch 8.0.0294: argument list is not stored correctly in a session file

Problem:    Argument list is not stored correctly in a session file.
            (lgpasquale)
Solution:   Use "$argadd" instead of "argadd". (closes vim#1434)

v8.0.0293

Toggle v8.0.0293's commit message
patch 8.0.0293: some tests have a one or three second wait

Problem:    Some tests have a one or three second wait.
Solution:   Reset the 'showmode' option.  Use a test time of one to disable
            sleep after an error or warning message.

v8.0.0292

Toggle v8.0.0292's commit message
patch 8.0.0292: the stat test is a bit slow

Problem:    The stat test is a bit slow.
Solution:   Remove a couple of sleep comments and reduce another.

v8.0.0291

Toggle v8.0.0291's commit message
patch 8.0.0291: Visual block insertion does not insert in all lines

Problem:    Visual block insertion does not insert in all lines.
Solution:   Don't bail out of insert too early. Add a test. (Christian
            Brabandt, closes vim#1290)

v8.0.0290

Toggle v8.0.0290's commit message
patch 8.0.0290: cursor positioning wrong if wide character wraps

Problem:    If a wide character doesn't fit at the end of the screen line, and
            the line doesn't fit on the screen, then the cursor position may
            be wrong. (anliting)
Solution:   Don't skip over wide character. (Christian Brabandt, closes vim#1408)

v8.0.0289

Toggle v8.0.0289's commit message
patch 8.0.0289: no test for "ga" and :ascii

Problem:    No test for "ga" and :ascii.
Solution:   Add a test. (Dominique Pelle, closes vim#1429)

v8.0.0288

Toggle v8.0.0288's commit message
patch 8.0.0288: errors reported while running tests

Problem:    Errors reported while running tests.
Solution:   Put comma in the right place.