summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2016-07-19patch 7.4.2078v7.4.2078Bram Moolenaar
Problem: Running checks in po diretory fails. Solution: Add colors used in syntax.c to the builtiin color table.
2016-07-19patch 7.4.2077v7.4.2077Bram Moolenaar
Problem: Cannot update 'tabline' when a tab was closed. Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
2016-07-19patch 7.4.2076v7.4.2076Bram Moolenaar
Problem: Syntax error when dict has '>' key. Solution: Check for endchar. (Ken Takata)
2016-07-19patch 7.4.2075v7.4.2075Bram Moolenaar
Problem: No autocommand event to initialize a window or tab page. Solution: Add WinNew and TabNew events. (partly by Felipe Morales)
2016-07-19patch 7.4.2074v7.4.2074Bram Moolenaar
Problem: One more place using a dummy variable. Solution: Use offsetof(). (Ken Takata)
2016-07-19patch 7.4.2073v7.4.2073Bram Moolenaar
Problem: rgb.txt is read for every color name. Solution: Load rgb.txt once. (Christian Brabandt) Add a test.
2016-07-19patch 7.4.2072v7.4.2072Bram Moolenaar
Problem: substitute() does not support a Funcref argument. Solution: Support a Funcref like it supports a string starting with "\=".
2016-07-19patch 7.4.2071v7.4.2071Bram Moolenaar
Problem: The return value of type() is difficult to use. Solution: Define v:t_ constants. (Ken Takata)
2016-07-19patch 7.4.2070v7.4.2070Bram Moolenaar
Problem: Missing change to include file. Solution: Include the spell header file.
2016-07-19patch 7.4.2069v7.4.2069Bram Moolenaar
Problem: spell.c is too big. Solution: Split it in spell file handling and spell checking.
2016-07-19patch 7.4.2068v7.4.2068Bram Moolenaar
Problem: Not all arguments of trunc_string() are tested. Memory access error when running the message tests. Solution: Add another test case. (Yegappan Lakshmanan) Make it easy to run unittests with valgrind. Fix the access error.
2016-07-18patch 7.4.2067v7.4.2067Bram Moolenaar
Problem: Compiler warning for char/char_u conversion. (Tony Mechelynck) Inefficient code. Solution: Use more lines to fill with spaces. (Nikolai Pavlov) Add type cast.
2016-07-17patch 7.4.2066v7.4.2066Bram Moolenaar
Problem: getcompletion() not well tested. Solution: Add more testing.
2016-07-17patch 7.4.2065v7.4.2065Bram Moolenaar
Problem: Compiler warns for uninitialzed variable. (John Marriott) Solution: Set lnum to the right value.
2016-07-17patch 7.4.2064v7.4.2064Bram Moolenaar
Problem: Coverity warns for possible buffer overflow. Solution: Use vim_strcat() instead of strcat().
2016-07-17patch 7.4.2063v7.4.2063Bram Moolenaar
Problem: eval.c is still too big. Solution: Split off internal functions to evalfunc.c.
2016-07-17patch 7.4.2062v7.4.2062Bram Moolenaar
Problem: Using dummy variable to compute struct member offset. Solution: Use offsetof().
2016-07-17patch 7.4.2061v7.4.2061Bram Moolenaar
Problem: qf_init_ext() is too big. Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
2016-07-17patch 7.4.2060v7.4.2060Bram Moolenaar
Problem: Wrong file name. Solution: Fix typo.
2016-07-17patch 7.4.2059v7.4.2059Bram Moolenaar
Problem: Non-Unix builds fail. Solution: Update Makefiles for new files.
2016-07-17patch 7.4.2058v7.4.2058Bram Moolenaar
Problem: eval.c is too big. Solution: Move user functions to userfunc.c
2016-07-17patch 7.4.2057v7.4.2057Bram Moolenaar
Problem: eval.c is too big. Solution: Move List functions to list.c
2016-07-17patch 7.4.2056v7.4.2056Bram Moolenaar
Problem: Build fails. Solution: Add missing changes.
2016-07-17patch 7.4.2055v7.4.2055Bram Moolenaar
Problem: eval.c is too big. Solution: Move Dictionary functions to dict.c.
2016-07-17Update runtime files.Bram Moolenaar
2016-07-16Put building with interfaces on the right target.Bram Moolenaar
2016-07-16patch 7.4.2054v7.4.2054Bram Moolenaar
Problem: Wrong part of #ifdef removed. Solution: Use the right part. (Hirohito Higashi)
2016-07-16Correct build condition.Bram Moolenaar
2016-07-16Add missing "then".Bram Moolenaar
2016-07-16Add a separate build target for the unittests. Hopefully the coverage will ↵Bram Moolenaar
be merged then.
2016-07-16Run unittests before scripttests. Hopefully does not mess up coverage.Bram Moolenaar
2016-07-16patch 7.4.2053v7.4.2053Bram Moolenaar
Problem: Can't run scripttests in the top directory. Solution: Add targets to the top Makefile.
2016-07-16patch 7.4.2052v7.4.2052Bram Moolenaar
Problem: Coverage report is messed up by the unittests. Solution: Add a separate test target for script tests. Use that when collecting coverage information.
2016-07-16patch 7.4.2051v7.4.2051Bram Moolenaar
Problem: No proper testing of trunc_string(). Solution: Add a unittest for message.c.
2016-07-16patch 7.4.2050v7.4.2050Bram Moolenaar
Problem: When using ":vimgrep" may end up with duplicate buffers. Solution: When adding an error list entry pass the buffer number if possible.
2016-07-16patch 7.4.2049v7.4.2049Bram Moolenaar
Problem: There is no way to get a list of the error lists. Solution: Add ":chistory" and ":lhistory".
2016-07-16patch 7.4.2048v7.4.2048Bram Moolenaar
Problem: There is still code and help for unsupported systems. Solution: Remove the code and text. (Hirohito Higashi)
2016-07-16patch 7.4.2047v7.4.2047Bram Moolenaar
Problem: Compiler warning for initializing a struct. Solution: Initialize in another way. (Anton Lindqvist)
2016-07-15Updated runtime files.Bram Moolenaar
2016-07-15patch 7.4.2046v7.4.2046Bram Moolenaar
Problem: The qf_init_ext() function is too big. Solution: Refactor it. (Yegappan Lakshmanan)
2016-07-15patch 7.4.2045v7.4.2045Bram Moolenaar
Problem: Memory leak when using a function callback. Solution: Don't save the function name when it's in the partial.
2016-07-15patch 7.4.2044v7.4.2044Bram Moolenaar
Problem: filter() and map() either require a string or defining a function. Solution: Support lambda, a short way to define a function that evaluates an expression. (Yasuhiro Matsumoto, Ken Takata)
2016-07-15patch 7.4.2043v7.4.2043Bram Moolenaar
Problem: setbuvfar() causes a screen redraw. Solution: Only use aucmd_prepbuf() for options.
2016-07-15patch 7.4.2042v7.4.2042Bram Moolenaar
Problem: GTK: display updating is not done properly and can be slow. Solution: Use gdk_display_flush() instead of gdk_display_sync(). Don't call gdk_window_process_updates(). (Kazunobu Kuriyama)
2016-07-15patch 7.4.2041v7.4.2041Bram Moolenaar
Problem: Netbeans file authentication not tested. Solution: Add a test.
2016-07-15patch 7.4.2040v7.4.2040Bram Moolenaar
Problem: New files missing from distribution. Solution: Add new test scripts.
2016-07-15patch 7.4.2039v7.4.2039Bram Moolenaar
Problem: The Netbeans integration is not tested. Solution: Add a first Netbeans test.
2016-07-14patch 7.4.2038v7.4.2038Bram Moolenaar
Problem: Small build still fails. Solution: Adjust more #ifdefs.
2016-07-14patch 7.4.2037v7.4.2037Bram Moolenaar
Problem: Small build fails. Solution: Adjust #ifdefs.
2016-07-14patch 7.4.2036v7.4.2036Bram Moolenaar
Problem: Looking up a buffer by number is slow if there are many. Solution: Use a hashtab.