summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-10patch 7.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.1083Bram Moolenaar
Problem: Building GvimExt with VS2015 may fail. Solution: Adjust the makefile. (Mike Williams)
2016-01-10patch 7.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.1081Bram Moolenaar
Problem: No test for what previously caused a crash. Solution: Add test for unletting errmsg.
2016-01-10patch 7.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.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.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.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.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.1075Bram Moolenaar
Problem: Crash when using an invalid command. Solution: Fix generating the error message. (Dominique Pelle)
2016-01-10patch 7.4.1074Bram Moolenaar
Problem: Warning from VX2015 compiler. Solution: Add a type cast. (Mike Williams)
2016-01-09patch 7.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.1072Bram Moolenaar
Problem: Increment test is old style. Solution: Make the increment test a new style test. (Hirohito Higashi)
2016-01-09patch 7.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.
2016-01-09patch 7.4.1070Bram Moolenaar
Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
2016-01-09patch 7.4.1069Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2016-01-09patch 7.4.1068Bram Moolenaar
Problem: Wrong way to check for unletting internal variables. Solution: Use a better way. (Olaf Dabrunz)
2016-01-09patch 7.4.1067Bram Moolenaar
Problem: Can't build with MingW and Python on MS-Windows. Solution: Move the build flags to CFLAGS.
2016-01-09patch 7.4.1066Bram Moolenaar
Problem: Build fails on MS-Windows. Solution: Adjust the #ifdefs for "dll" options.
2016-01-09patch 7.4.1065Bram Moolenaar
Problem: Cannot use the "dll" options on MS-Windows. Solution: Support the options on all platforms. Use the built-in name as the default, so that it's clear what Vim is looking for.
2016-01-09patch 7.4.1064Bram Moolenaar
Problem: When a spell file has single letter compounding creating suggestions takes an awful long time. Solution: Add th eNOCOMPOUNDSUGS flag.
2016-01-09Update to newer English spell files,Bram Moolenaar
but without the COMPOUND rules that make suggestions very slow.
2016-01-07patch 7.4.1063Bram Moolenaar
Problem: TCL_VER_LONG and DYNAMIC_TCL_VER are not set when building with Cygwin and MingW. Solution: Add TCL_VER_LONG and DYNAMIC_TCL_VER to the makefile.
2016-01-07patch 7.4.1062Bram Moolenaar
Problem: Building with Ruby on MS-Windows requires a lot of arguments. Solution: Make it simpler. (Ken Takata)
2016-01-07patch 7.4.1061Bram Moolenaar
Problem: Compiler warning for ignoring return value of fwrite(). Solution: Do use the return value. (idea: Charles Campbell)
2016-01-07patch 7.4.1060Bram Moolenaar
Problem: Instructions for writing tests are outdated. Solution: Mention Make_all.mak. Add steps for new style tests.
2016-01-07patch 7.4.1059Bram Moolenaar
Problem: Code will never be executed. Solution: Remove the code.
2016-01-07patch 7.4.1058Bram Moolenaar
Problem: It is not possible to test code that is only reached when memory allocation fails. Solution: Add the alloc_fail() function. Try it out with :vimgrep.
2016-01-07patch 7.4.1057Bram Moolenaar
Problem: Typos in the :options window. Solution: Fix the typos. (Dominique Pelle)
2016-01-07patch 7.4.1056Bram Moolenaar
Problem: Don't know why finding spell suggestions is slow. Solution: Add some code to gather profiling information.
2016-01-07Revert English spell file updateBram Moolenaar
2016-01-06patch 7.4.1055Bram Moolenaar
Problem: Running "make newtests" in src/testdir has no output. Solution: List the messages file when a test fails. (Christian Brabandt) Update the list of tests.
2016-01-05patch 7.4.1054Bram Moolenaar
Problem: Illegal memory access. Solution: Check for missing pattern. (Dominique Pelle)
2016-01-05patch 7.4.1053Bram Moolenaar
Problem: Insufficient testing for quickfix commands. Solution: Add a new style quickfix test. (Yegappan Lakshmanan)
2016-01-05patch 7.4.1052Bram Moolenaar
Problem: Illegal memory access with weird syntax command. (Dominique Pelle) Solution: Check for column past end of line.
2016-01-04patch 7.4.1051Bram Moolenaar
Problem: Segfault when unletting "count". Solution: Check for readonly and locked first. (Dominique Pelle) Add a test.
2016-01-04patch 7.4.1050Bram Moolenaar
Problem: Warning for unused var with tiny features. (Tony Mechelynck) Solution: Add #ifdef. Use vim_snprintf(). Reduce number of statemements.
2016-01-04patch 7.4.1049Bram Moolenaar
Problem: Wordcount test still still fails on MS-Windows. Solution: Set 'fileformats' to "unix".
2016-01-04patch 7.4.1048Bram Moolenaar
Problem: Wordcount test still fail on MS-Windows. Solution: Set 'fileformat' to "unix".
2016-01-04patch 7.4.1047Bram Moolenaar
Problem: Tests fail on MS-Windows. Solution: Set 'selection' to inclusive.
2016-01-03patch 7.4.1046Bram Moolenaar
Problem: No test coverage for menus. Solution: Load the standard menus and check there is no error.
2016-01-03patch 7.4.1045Bram Moolenaar
Problem: Having shadow and coverage on the same build results in the source files not being available in the coverage view. Solution: Move using shadow to the normal build.
2016-01-03patch 7.4.1044Bram Moolenaar
Problem: Can't build without the +eval feature. Solution: Add #ifdef.
2016-01-03patch 7.4.1043Bram Moolenaar
Problem: Another small thing. Solution: Now really update the Mac install text.
2016-01-03patch 7.4.1042Bram Moolenaar
Problem: g-CTRL-G shows the word count, but there is no way to get the word count in a script. Solution: Add the wordcount() function. (Christian Brabandt)
2016-01-03patch 7.4.1041Bram Moolenaar
Problem: Various small things. Solution: Add file to list of distributed files. Adjust README. Fix typo.
2016-01-03Updated runtime files.Bram Moolenaar
2016-01-03patch 7.4.1040Bram Moolenaar
Problem: The tee command is not available on MS-Windows. Solution: Adjust tee.c for MSVC and add a makefile. (Yasuhiro Matsumoto)