summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-12-19patch 7.4.978v7.4.978Bram Moolenaar
Problem: test_cdo fails when using another language than English. Solution: Set the language to C. (Dominique Pelle)
2015-12-17patch 7.4.977v7.4.977Bram Moolenaar
Problem: 'linebreak' does not work properly when using "space" in 'listchars'. Solution: (Hirohito Higashi, Christian Brabandt)
2015-12-17patch 7.4.976v7.4.976Bram Moolenaar
Problem: When compiling Vim for MSYS2 (linked with msys-2.0.dll), the Win32 clipboard is not enabled. Solution: Recognize MSYS like CYGWIN. (Ken Takata)
2015-12-17patch 7.4.975v7.4.975Bram Moolenaar
Problem: Using ":sort" on a very big file sometimes causes text to be corrupted. (John Beckett) Solution: Copy the line into a buffer before calling ml_append().
2015-12-17patch 7.4.974v7.4.974Bram Moolenaar
Problem: When using :diffsplit the cursor jumps to the first line. Solution: Put the cursor on the line related to where the cursor was before the split.
2015-12-17patch 7.4.973v7.4.973Bram Moolenaar
Problem: When pasting on the command line line breaks result in literal <CR> characters. This makes pasting a long file name difficult. Solution: Skip the characters.
2015-12-13patch 7.4.972v7.4.972Bram Moolenaar
Problem: Memory leak when there is an error in setting an option. Solution: Free the saved value (Christian Brabandt)
2015-12-13patch 7.4.971v7.4.971Bram Moolenaar
Problem: The asin() function can't be used. Solution: Sort the function table properly. (Watiko)
2015-12-12patch 7.4.970v7.4.970Bram Moolenaar
Problem: Rare crash in getvcol(). (Timo Mihaljov) Solution: Check for the buffer being NULL in init_preedit_start_col. (Hirohito Higashi, Christian Brabandt)
2015-12-11patch 7.4.969v7.4.969Bram Moolenaar
Problem: Compiler warnings on Windowx x64 build. Solution: Add type casts. (Mike Williams)
2015-12-11patch 7.4.968v7.4.968Bram Moolenaar
Problem: test86 and test87 are flaky in Appveyor. Solution: Reduce the count from 8 to 7. (suggested by ZyX)
2015-12-11patch 7.4.967v7.4.967Bram Moolenaar
Problem: Cross compilation on MS-windows doesn't work well. Solution: Tidy up cross compilation across architectures with Visual Studio. (Mike Williams)
2015-12-11patch 7.4.966v7.4.966Bram Moolenaar
Problem: Configure doesn't work with a space in a path. Solution: Put paths in quotes. (James McCoy, close #525)
2015-12-11patch 7.4.965v7.4.965Bram Moolenaar
Problem: On FreeBSD /dev/fd/ files are special. Solution: Use is_dev_fd_file() also for FreeBSD. (Derek Schrock, closes #521)
2015-12-11patch 7.4.964v7.4.964Bram Moolenaar
Problem: Test 87 doesn't work in a shadow directory. Solution: Handle the extra subdirectory. (James McCoy, closes #515)
2015-12-06patch 7.4.963v7.4.963Bram Moolenaar
Problem: test_listlbr_utf8 sometimes fails. Solution: Don't use a literal multibyte character but <C-V>uXXXX. Do not dump the screen highlighting. (Christian Brabandt, closes #518)
2015-12-05Updated runtime files.Bram Moolenaar
2015-12-05patch 7.4.962v7.4.962Bram Moolenaar
Problem: Cannot run the tests with gvim. Cannot run individual new stests. Solution: Add the -f flag. Add new test targets in Makefile.
2015-12-05patch 7.4.961v7.4.961Bram Moolenaar
Problem: Test107 fails in some circunstances. Solution: When using "zt", "zb" and "z=" recompute the fraction.
2015-12-03patch 7.4.960v7.4.960Bram Moolenaar
Problem: Detecting every version of nmake is clumsy. Solution: Use a tiny C program to get the version of _MSC_VER. (Ken Takata)
2015-12-03patch 7.4.959v7.4.959Bram Moolenaar
Problem: When setting 'term' the clipboard ownership is lost. Solution: Do not call clip_init(). (James McCoy)
2015-12-03patch 7.4.958v7.4.958Bram Moolenaar
Problem: Vim checks if the directory "$TMPDIR" exists. Solution: Do not check if the name starts with "$".
2015-12-03patch 7.4.957v7.4.957Bram Moolenaar
Problem: Test_tagcase fails when using another language than English. Solution: Set the messages language to C. (Kenichi Ito)
2015-12-03patch 7.4.956v7.4.956Bram Moolenaar
Problem: A few more file name extensions not recognized. Solution: Add .asciidoc, .bzl, .gradle, etc.
2015-12-03patch 7.4.955v7.4.955Bram Moolenaar
Problem: Vim doesn't recognize .pl6 and .pod6 files. Solution: Recognize them as perl6 and pod6. (Mike Eve, closes #511)
2015-12-03patch 7.4.954v7.4.954Bram Moolenaar
Problem: When using Lua there may be a crash. (issue #468) Solution: Avoid using an unitialized tv. (Yukihiro Nakadaira)
2015-12-03patch 7.4.953v7.4.953Bram Moolenaar
Problem: When a test script navigates to another buffer the .res file is created with the wrong name. Solution: Use the "testname" for the .res file. (Damien)
2015-12-03patch 7.4.952v7.4.952Bram Moolenaar
Problem: 'lispwords' is tested in the old way. Solution: Make a new style test for 'lispwords'.
2015-12-03patch 7.4.951v7.4.951Bram Moolenaar
Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort()
2015-12-03patch 7.4.950v7.4.950Bram Moolenaar
Problem: v:errors is not initialized. Solution: Initialze it to an empty list. (Thinca)
2015-12-03patch 7.4.949v7.4.949Bram Moolenaar
Problem: When using 'colorcolumn' and there is a sign with a fullwidth character the highlighting is wrong. (Andrew Stewart) Solution: Only increment vcol when in the right state. (Christian Brabandt)
2015-12-03patch 7.4.948v7.4.948Bram Moolenaar
Problem: Can't build when the insert_expand feature is disabled. Solution: Add #ifdefs. (Dan Pasanen, closes #499)
2015-12-01patch 7.4.947v7.4.947Bram Moolenaar
Problem: Test_listchars fails with MingW. (Michael Soyka) Solution: Add the test to the ones that need the fileformat fixed. (Christian Brabandt)
2015-12-01patch 7.4.946v7.4.946Bram Moolenaar
Problem: Missing changes in source file. Solution: Include changes to the eval.c file.
2015-11-30patch 7.4.945v7.4.945Bram Moolenaar
Problem: New style testing is incomplete. Solution: Add the runtest script to the list of distributed files. Add the new functions to the function overview. Rename the functions to match Vim function style. Move undolevels testing into a new style test script.
2015-11-29patch 7.4.944v7.4.944Bram Moolenaar
Problem: Writing tests for Vim script is hard. Solution: Add assertEqual(), assertFalse() and assertTrue() functions. Add the v:errors variable. Add the runtest script. Add a first new style test script.
2015-11-28patch 7.4.943v7.4.943Bram Moolenaar
Problem: Tests are not run. Solution: Add test_writefile to makefiles. (Ken Takata)
2015-11-25patch 7.4.942v7.4.942Bram Moolenaar
Problem: test_tagcase breaks for small builds. Solution: Bail out of the test early. (Hirohito Higashi)
2015-11-24Update runtime files.Bram Moolenaar
2015-11-24patch 7.4.941v7.4.941Bram Moolenaar
Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson)
2015-11-24patch 7.4.940v7.4.940Bram Moolenaar
Problem: vt52 terminal codes are not correct. Solution: Move entries outside of #if. (Random) Adjustments based on documented codes.
2015-11-24patch 7.4.939v7.4.939Bram Moolenaar
Problem: Memory leak when encountering a syntax error. Solution: Free the memory. (Dominique Pelle)
2015-11-24patch 7.4.938v7.4.938Bram Moolenaar
Problem: X11 and GTK have moure mouse buttons than Vim supports. Solution: Recognize more mouse buttons. (Benoit Pierre, closes #498)
2015-11-24patch 7.4.937v7.4.937Bram Moolenaar
Problem: Segfault reading unitialized memory. Solution: Do not read match \z0, it does not exist. (Marius Gedminas, closes #497)
2015-11-22patch 7.4.936v7.4.936Bram Moolenaar
Problem: Crash when dragging with the mouse. Solution: Add safety check for NULL pointer. Check mouse position for valid value. (Hirohito Higashi)
2015-11-22patch 7.4.935v7.4.935Bram Moolenaar
Problem: test_utf8 fails on MS-Windows when executed with gvim. Solution: Use the insert flag on feedkeys() to put the string before the ":" that was already read when checking for available chars.
2015-11-21patch 7.4.934v7.4.934Bram Moolenaar
Problem: Appveyor also builds on a tag push. Solution: Add a skip_tags line. (Kenichi Ito, closes #489)
2015-11-21patch 7.4.933v7.4.933Bram Moolenaar
Problem: Crash when using longest completion match. Solution: Fix array index.
2015-11-21patch 7.4.932v7.4.932Bram Moolenaar
Problem: test_utf8 has confusing dummy command. Solution: Use a real command instead of a colon.
2015-11-21patch 7.4.931v7.4.931Bram Moolenaar
Problem: Test 94 fails on some systems. Solution: Set 'encoding' to utf-8.