summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-01-17patch 7.4.1116v7.4.1116Bram Moolenaar
Problem: delete(x, 'rf') does not delete files starting with a dot. Solution: Also delete files starting with a dot.
2016-01-17patch 7.4.1115v7.4.1115Bram Moolenaar
Problem: MS-Windows: make clean in testdir doesn't clean everything. Solution: Add command to delete X* directories. (Ken Takata)
2016-01-17patch 7.4.1114v7.4.1114Bram Moolenaar
Problem: delete() does not work well with symbolic links. Solution: Recognize symbolik links.
2016-01-17patch 7.4.1113v7.4.1113Bram Moolenaar
Problem: Using {ns} in variable name does not work. (lilydjwg) Solution: Fix recognizing colon. Add a test.
2016-01-16patch 7.4.1112v7.4.1112Bram Moolenaar
Problem: When using ":next" with an illegal file name no error is reported. Solution: Give an error message.
2016-01-16patch 7.4.1111v7.4.1111Bram Moolenaar
Problem: test_expand fails on MS-Windows. Solution: Always use forward slashes. Remove references to test27.
2016-01-16patch 7.4.1110v7.4.1110Bram Moolenaar
Problem: Test 108 fails when language is French. Solution: Force English messages. (Dominique Pelle)
2016-01-16patch 7.4.1109v7.4.1109Bram Moolenaar
Problem: MS-Windows doesn't have rmdir(). Solution: Add mch_rmdir().
2016-01-16patch 7.4.1108v7.4.1108Bram Moolenaar
Problem: Expanding "~" halfway a file name. Solution: Handle the file name as one name. (Marco Hinz) Add a test. Closes #564.
2016-01-16patch 7.4.1107v7.4.1107Bram Moolenaar
Problem: Vim can create a directory but not delete it. Solution: Add an argument to delete() to make it possible to delete a directory, also recursively.
2016-01-16patch 7.4.1106v7.4.1106Bram Moolenaar
Problem: The nsis script can't be used from the appveyor build. Solution: Add "ifndef" to allow for variables to be set from the command line. Remove duplicate SetCompressor command. Support using other gettext binaries. (Ken Takata) Update build instructions to use libintl-8.dll.
2016-01-16patch 7.4.1105v7.4.1105Bram Moolenaar
Problem: When using slices there is a mixup of variable name and namespace. Solution: Recognize variables that can't be a namespace. (Hirohito Higashi)
2016-01-16patch 7.4.1104v7.4.1104Bram Moolenaar
Problem: Various problems building with MzScheme/Racket. Solution: Make it work with new versions of Racket. (Yukihiro Nakadaira, Ken Takata)
2016-01-16patch 7.4.1103v7.4.1103Bram Moolenaar
Problem: Removed file still in distribution. Solution: Remove Make_cyg.mak from the list of files.
2016-01-16patch 7.4.1102v7.4.1102Bram Moolenaar
Problem: Debugger has no stack backtrace support. Solution: Add "backtrace", "frame", "up" and "down" commands. (Alberto Fanjul, closes #433)
2016-01-15patch 7.4.1101v7.4.1101Bram Moolenaar
Problem: With 'rightleft' and concealing the cursor may move to the wrong position. Solution: Compute the column differently when 'rightleft' is set. (Hirohito Higashi)
2016-01-15patch 7.4.1100v7.4.1100Bram Moolenaar
Problem: Cygwin makefiles are unused. Solution: Remove them.
2016-01-15patch 7.4.1099v7.4.1099Bram Moolenaar
Problem: It's not easy to know if Vim supports blowfish. (Smu Johnson) Solution: Add has('crypt-blowfish') and has('crypt-blowfish2').
2016-01-15patch 7.4.1098v7.4.1098Bram Moolenaar
Problem: Still using old style C function declarations. Solution: Always define __ARGS() to include types. Turn a few functions into ANSI style to find out if this causes problems for anyone.
2016-01-15Update runtime filesBram Moolenaar
2016-01-15patch 7.4.1097v7.4.1097Bram Moolenaar
Problem: Looking up the alloc ID for tests fails. Solution: Fix the line computation. Use assert_fails() for unlet test.
2016-01-15patch 7.4.1096v7.4.1096Bram Moolenaar
Problem: Need several lines to verify a command produces an error. Solution: Add assert_fails(). (suggested by Nikolay Pavlov) Make the quickfix alloc test actually work.
2016-01-15patch 7.4.1095v7.4.1095Bram Moolenaar
Problem: Can't build GvimExt with SDK 7.1. Solution: Support using setenv.bat instead of vcvars32.bat. (Ken Takata)
2016-01-15Add missing test file.Bram Moolenaar
2016-01-15patch 7.4.1094v7.4.1094Bram Moolenaar
Problem: Test for :hardcopy fails on MS-Windows. Solution: Check for the +postscript feature.
2016-01-15patch 7.4.1093v7.4.1093Bram Moolenaar
Problem: Typo in test goes unnoticed. Solution: Fix the typo. Give error for wrong arguments to cursor(). (partly by Hirohito Higashi) Add a test for cursor().
2016-01-15patch 7.4.1092v7.4.1092Bram Moolenaar
Problem: It is not simple to test for an exception and give a proper error message. Solution: Add assert_exception().
2016-01-15patch 7.4.1091v7.4.1091Bram Moolenaar
Problem: When making a change while need_wait_return is set there is a two second delay. Solution: Do not assume the ATTENTION prompt was given when need_wait_return was set already.
2016-01-14patch 7.4.1090v7.4.1090Bram Moolenaar
Problem: No tests for :hardcopy and related options. Solution: Add test_hardcopy.
2016-01-12patch 7.4.1089v7.4.1089Bram Moolenaar
Problem: Repeating CTRL-A doesn't work. Solution: Call prep_redo_cmd(). (Hirohito Higashi)
2016-01-12patch 7.4.1088v7.4.1088Bram Moolenaar
Problem: Coverity warns for uninitialized variables. Only one is an actual problem. Solution: Move the conditions. Don't use endpos if handling an error.
2016-01-10patch 7.4.1087v7.4.1087Bram Moolenaar
Problem: CTRL-A and CTRL-X do not work properly with blockwise visual selection if there is a mix of Tab and spaces. Solution: Add OP_NR_ADD and OP_NR_SUB. (Hirohito Higashi)
2016-01-10patch 7.4.1086v7.4.1086Bram Moolenaar
Problem: Crash with an extremely long buffer name. Solution: Limit the return value of vim_snprintf(). (Dominique Pelle)
2016-01-10patch 7.4.1085v7.4.1085Bram Moolenaar
Problem: The CTRL-A and CTRL-X commands do not update the '[ and '] marks. Solution: (Yukihiro Nakadaira)
2016-01-10patch 7.4.1084v7.4.1084Bram Moolenaar
Problem: Using "." to repeat CTRL-A in Visual mode increments the wrong numbers. Solution: Append right size to the redo buffer. (Ozaki Kiichi)
2016-01-10patch 7.4.1083v7.4.1083Bram Moolenaar
Problem: Building GvimExt with VS2015 may fail. Solution: Adjust the makefile. (Mike Williams)
2016-01-10patch 7.4.1082v7.4.1082Bram Moolenaar
Problem: The Tcl interface is always skipping memory free on exit. Solution: Only skip for dynamically loaded Tcl.
2016-01-10patch 7.4.1081v7.4.1081Bram Moolenaar
Problem: No test for what previously caused a crash. Solution: Add test for unletting errmsg.
2016-01-10patch 7.4.1080v7.4.1080Bram Moolenaar
Problem: VS2015 has a function HandleToLong() that is shadowed by the macro that Vim defines. Solution: Do not define HandleToLong() for MSVC version 1400 and later. (Mike Williams)
2016-01-10patch 7.4.1079v7.4.1079Bram Moolenaar
Problem: New include file missing from distribution. Missing changes to quickfix code. Solution: Add alloc.h to the list of distributed files. Use the enum in quickfix code.
2016-01-10Updated runtime files.Bram Moolenaar
2016-01-10patch 7.4.1078v7.4.1078Bram Moolenaar
Problem: MSVC: "make clean" doesn't cleanup in the tee directory. Solution: Add the commands to cleanup tee. (Erich Ritz)
2016-01-10patch 7.4.1077v7.4.1077Bram Moolenaar
Problem: The build instructions for MS-Windows are incomplete. Solution: Add explanations for how to build with various interfaces. (Ken Takata)
2016-01-10patch 7.4.1076v7.4.1076Bram Moolenaar
Problem: CTRL-A does not work well in right-left mode. Solution: Remove reversing the line, add a test. (Hirohito Higashi)
2016-01-10patch 7.4.1075v7.4.1075Bram Moolenaar
Problem: Crash when using an invalid command. Solution: Fix generating the error message. (Dominique Pelle)
2016-01-10patch 7.4.1074v7.4.1074Bram Moolenaar
Problem: Warning from VX2015 compiler. Solution: Add a type cast. (Mike Williams)
2016-01-09patch 7.4.1073v7.4.1073Bram Moolenaar
Problem: Alloc_id depends on numbers, may use the same one twice. It's not clear from the number what it's for. Solution: Use an enum. Add a function to lookup the enum value from the name.
2016-01-09add missing test fileBram Moolenaar
2016-01-09patch 7.4.1072v7.4.1072Bram Moolenaar
Problem: Increment test is old style. Solution: Make the increment test a new style test. (Hirohito Higashi)
2016-01-09patch 7.4.1071v7.4.1071Bram Moolenaar
Problem: New style tests are executed in arbitrary order. Solution: Sort the test function names. (Hirohito Higashi) Fix the quickfix test that depended on the order.