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

Skip to content

Tags: nevinhappy/vim-1

Tags

v8.0.0503

Toggle v8.0.0503's commit message
patch 8.0.0503: endless loop in updating folds with 32 bit ints

Problem:    Endless loop in updating folds with 32 bit ints.
Solution:   Subtract from LHS instead of add to the RHS. (Matthew Malcomson)

v8.0.0502

Toggle v8.0.0502's commit message
patch 8.0.0502: Coverity complains about possible NULL pointer

Problem:    Coverity complains about possible NULL pointer.
Solution:   Add an assert(), let's see if this works on all systems.

v8.0.0501

Toggle v8.0.0501's commit message
patch 8.0.0501: on MS-Windows ":!start" does not work as expected

Problem:    On MS-Windows ":!start" does not work as expected.
Solution:   When creating a process fails try passing the argument to
            ShellExecute().  (Katsuya Hino, closes vim#1570)

v8.0.0500

Toggle v8.0.0500's commit message
patch 8.0.0500: quotestar test is still a bit flaky

Problem:    Quotestar test is still a bit flaky.
Solution:   Add a slower check for v:version.

v8.0.0499

Toggle v8.0.0499's commit message
patch 8.0.0499: taglist() does not prioritize tags for a buffer

Problem:    taglist() does not prioritize tags for a buffer.
Solution:   Add an optional buffer argument. (Duncan McDougall, closes vim#1194)

v8.0.0498

Toggle v8.0.0498's commit message
patch 8.0.0498: two autocmd tests are skipped on MS-Windows

Problem:    Two autocmd tests are skipped on MS-Windows.
Solution:   Make the test pass on MS-Windows. Write the messages in a file
            instead of getting the output of system().

v8.0.0497

Toggle v8.0.0497's commit message
patch 8.0.0497: arabic support is not fully tested

Problem:    Arabic support is not fully tested.
Solution:   Add more tests for the untested functions.  Comment out
            unreachable code.

v8.0.0496

Toggle v8.0.0496's commit message
patch 8.0.0496: insufficient testing for folding

Problem:    Insufficient testing for folding.
Solution:   Add a couple more fold tests. (Dominique Pelle, closes vim#1579)

v8.0.0495

Toggle v8.0.0495's commit message
patch 8.0.0495: quotestar test uses timer instead of timeout

Problem:    The quotestar test uses a timer instead of a timeout, thus it
            cannot be rerun like a flaky test.
Solution:   Remove the timer and add a timeout. (Kazunobu Kuriyama)

v8.0.0494

Toggle v8.0.0494's commit message
patch 8.0.0494: build failure with older compiler on MS-Windows

Problem:    Build failure with older compiler on MS-Windows.
Solution:   Move declaration to start of block.