]>
granicus.if.org Git - vim/log
Bram Moolenaar [Sat, 30 Jul 2016 17:39:29 +0000 (19:39 +0200)]
patch 7.4.2127
Problem: The short form of ":noswapfile" is ":noswap" instead of ":now".
(Kent Sibilev)
Solution: Only require three characters. Add a test for the short forms.
Bram Moolenaar [Sat, 30 Jul 2016 17:11:25 +0000 (19:11 +0200)]
patch 7.4.2126
Problem: No tests for :diffget and :diffput
Solution: Add tests.
Bram Moolenaar [Sat, 30 Jul 2016 15:41:49 +0000 (17:41 +0200)]
Add OSX build to Travis CI. (Christian Brabandt)
Bram Moolenaar [Sat, 30 Jul 2016 14:40:39 +0000 (16:40 +0200)]
patch 7.4.2125
Problem: Compiler warning for loss of data.
Solution: Add a type cast. (Christian Brabandt)
Bram Moolenaar [Sat, 30 Jul 2016 14:36:01 +0000 (16:36 +0200)]
patch 7.4.2124
Problem: diffmode test leaves files behind, breaking another test.
Solution: Delete the files.
Bram Moolenaar [Sat, 30 Jul 2016 14:16:54 +0000 (16:16 +0200)]
patch 7.4.2123
Problem: No new style test for diff mode.
Solution: Add a test. Check that folds are in sync.
Bram Moolenaar [Sat, 30 Jul 2016 12:12:23 +0000 (14:12 +0200)]
patch 7.4.2122
Problem: Mac: don't get +clipboard in huge build.
Solution: Move #define down below including featureh.h
Bram Moolenaar [Fri, 29 Jul 2016 20:50:35 +0000 (22:50 +0200)]
patch 7.4.2121
Problem: No easy way to check if lambda and closure are supported.
Solution: Add the +lambda feature.
Bram Moolenaar [Fri, 29 Jul 2016 20:37:06 +0000 (22:37 +0200)]
patch 7.4.2120
Problem: User defined functions can't be a closure.
Solution: Add the "closure" argument. Allow using :unlet on a bound
variable. (Yasuhiro Matsumoto, Ken Takata)
Bram Moolenaar [Fri, 29 Jul 2016 20:15:09 +0000 (22:15 +0200)]
patch 7.4.2119
Problem: Closures are not supported.
Solution: Capture variables in lambdas from the outer scope. (Yasuhiro
Matsumoto, Ken Takata)
Bram Moolenaar [Fri, 29 Jul 2016 19:01:10 +0000 (21:01 +0200)]
patch 7.4.2118
Problem: Mac: can't build with tiny features.
Solution: Don't define FEAT_CLIPBOARD unconditionally. (Kazunobu Kuriyama)
Bram Moolenaar [Fri, 29 Jul 2016 18:50:24 +0000 (20:50 +0200)]
patch 7.4.2117
Problem: Deleting an augroup that still has autocmds does not give a
warning. The next defined augroup takes its place.
Solution: Give a warning and prevent the index being used for another group
name.
Bram Moolenaar [Fri, 29 Jul 2016 16:33:38 +0000 (18:33 +0200)]
patch 7.4.2116
Problem: The default vimrc for Windows is very conservative.
Solution: Use the defaults.vim in the Windows installer.
Bram Moolenaar [Fri, 29 Jul 2016 16:13:42 +0000 (18:13 +0200)]
patch 7.4.2115
Problem: Loading defaults.vim with -C argument.
Solution: Don't load the defaults script with -C argument. Test sourcing
the defaults script. Set 'display' to "truncate".
Bram Moolenaar [Fri, 29 Jul 2016 15:03:54 +0000 (17:03 +0200)]
patch 7.4.2114
Problem: Tiny build fails.
Solution: Always include vim_time().
Bram Moolenaar [Fri, 29 Jul 2016 14:15:27 +0000 (16:15 +0200)]
patch 7.4.2113
Problem: Test for undo is flaky.
Solution: Turn it into a new style test. Use test_settime() to avoid
flakyness.
Bram Moolenaar [Thu, 28 Jul 2016 20:53:37 +0000 (22:53 +0200)]
patch 7.4.2112
Problem: getcompletion(.., 'dir') returns a match with trailing "*" when
there are no matches. (Chdiza)
Solution: Return an empty list when there are no matches. Add a trailing
slash to directories. (Yegappan Lakshmanan) Add tests for no
matches. (closes #947)
Bram Moolenaar [Thu, 28 Jul 2016 20:36:37 +0000 (22:36 +0200)]
Update gitignore for new test binary. (Oyvind Holm, closes #954)
Bram Moolenaar [Thu, 28 Jul 2016 20:24:15 +0000 (22:24 +0200)]
patch 7.4.2111
Problem: Defaults are very conservative.
Solution: Move settings from vimrc_example.vim to defaults.vim. Load
defaults.vim if no .vimrc was found.
Bram Moolenaar [Thu, 28 Jul 2016 20:08:24 +0000 (22:08 +0200)]
patch 7.4.2110
Problem: When there is an CmdUndefined autocmd then the error for a missing
command is E464 instead of E492. (Manuel Ortega)
Solution: Don't let the pointer be NULL.
Bram Moolenaar [Wed, 27 Jul 2016 21:26:04 +0000 (23:26 +0200)]
patch 7.4.2109
Problem: Setting 'display' to "lastline" is a drastic change, while
omitting it results in lots of "@" lines.
Solution: Add "truncate" to show "@@@" for a truncated line.
Bram Moolenaar [Wed, 27 Jul 2016 20:56:48 +0000 (22:56 +0200)]
patch 7.4.2108
Problem: Netbeans test is flaky.
Solution: Wait for the cursor to be positioned.
Bram Moolenaar [Tue, 26 Jul 2016 20:14:09 +0000 (22:14 +0200)]
patch 7.4.2107
Problem: Misplaced equal sign.
Solution: Remove it.
Bram Moolenaar [Tue, 26 Jul 2016 20:02:54 +0000 (22:02 +0200)]
patch 7.4.2106
Problem: Clang warns about missing field in initializer.
Solution: Define COMMA and use it. (Kazunobu Kuriyama)
Bram Moolenaar [Tue, 26 Jul 2016 19:27:36 +0000 (21:27 +0200)]
patch 7.4.2105
Problem: Configure reports default features to be "normal" while it is
"huge".
Solution: Change the default text.
Bram Moolenaar [Tue, 26 Jul 2016 18:46:08 +0000 (20:46 +0200)]
patch 7.4.2104
Problem: Code duplication when unreferencing a function.
Solution: De-duplicate.
Bram Moolenaar [Tue, 26 Jul 2016 18:43:40 +0000 (20:43 +0200)]
patch 7.4.2103
Problem: Can't have "augroup END" right after ":au!".
Solution: Check for the bar character before the command argument.
Bram Moolenaar [Sun, 24 Jul 2016 20:25:15 +0000 (22:25 +0200)]
patch 7.4.2102
Problem: Tiny build with GUI fails.
Solution: Revert one FOR_ALL_ change.
Bram Moolenaar [Sun, 24 Jul 2016 20:04:11 +0000 (22:04 +0200)]
patch 7.4.2101
Problem: Looping over windows, buffers and tab pages is inconsistant.
Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
Bram Moolenaar [Sun, 24 Jul 2016 15:33:05 +0000 (17:33 +0200)]
patch 7.4.2100
Problem: "cgn" and "dgn" do not work correctly with a single character
match and the replacement includes the searched pattern. (John
Beckett)
Solution: If the match is found in the wrong column try in the next column.
Turn the test into new style. (Christian Brabandt)
Bram Moolenaar [Sun, 24 Jul 2016 14:17:59 +0000 (16:17 +0200)]
patch 7.4.2099
Problem: When a keymap is active only "(lang)" is displayed. (Ilya
Dogolazky)
Solution: Show the keymap name. (Dmitri Vereshchagin, closes #933)
Bram Moolenaar [Sun, 24 Jul 2016 12:12:38 +0000 (14:12 +0200)]
Updated runtime files.
Bram Moolenaar [Sat, 23 Jul 2016 20:04:47 +0000 (22:04 +0200)]
patch 7.4.2098
Problem: Text object tests are old style.
Solution: Turn them into new style tests. (James McCoy, closes #941)
Bram Moolenaar [Sat, 23 Jul 2016 15:28:22 +0000 (17:28 +0200)]
patch 7.4.2097
Problem: Warning from 64 bit compiler.
Solution: use size_t instead of int. (Mike Williams)
Bram Moolenaar [Sat, 23 Jul 2016 13:47:34 +0000 (15:47 +0200)]
patch 7.4.2096
Problem: Lambda functions show up with completion.
Solution: Don't show lambda functions. (Ken Takata)
Bram Moolenaar [Sat, 23 Jul 2016 13:35:35 +0000 (15:35 +0200)]
patch 7.4.2095
Problem: Man test fails when run with the GUI.
Solution: Adjust for different behavior of GUI. Add assert_inrange().
Bram Moolenaar [Sat, 23 Jul 2016 12:35:12 +0000 (14:35 +0200)]
patch 7.4.2094
Problem: The color allocation in X11 is overly complicated.
Solution: Remove find_closest_color(), XAllocColor() already does this.
(Kazunobu Kuriyama)
Bram Moolenaar [Sat, 23 Jul 2016 12:01:15 +0000 (14:01 +0200)]
patch 7.4.2093
Problem: Netbeans test fails once in a while. Leaving log file behind.
Solution: Add it to the list of flaky tests. Disable logfile.
Bram Moolenaar [Fri, 22 Jul 2016 20:26:52 +0000 (22:26 +0200)]
patch 7.4.2092
Problem: GTK 3 build fails with older GTK version.
Solution: Check the pango version. (Kazunobu Kuriyama)
Bram Moolenaar [Fri, 22 Jul 2016 20:12:38 +0000 (22:12 +0200)]
patch 7.4.2091
Problem: Coverity reports a resource leak when out of memory.
Solution: Close the file before returning.
Bram Moolenaar [Fri, 22 Jul 2016 19:50:18 +0000 (21:50 +0200)]
patch 7.4.2090
Problem: Using submatch() in a lambda passed to substitute() is verbose.
Solution: Use a static list and pass it as an optional argument to the
function. Fix memory leak.
Bram Moolenaar [Thu, 21 Jul 2016 20:10:12 +0000 (22:10 +0200)]
patch 7.4.2089
Problem: Color handling of X11 GUIs is too complicated.
Solution: Simplify the code. Use RGBA where appropriate. (Kazunobu
Kuriyama)
Bram Moolenaar [Thu, 21 Jul 2016 20:03:02 +0000 (22:03 +0200)]
patch 7.4.2088
Problem: Keymap test fails with normal features.
Solution: Bail out if the keymap feature is not supported.
Bram Moolenaar [Thu, 21 Jul 2016 19:23:38 +0000 (21:23 +0200)]
patch 7.4.2087
Problem: Digraph code test coverage is still low.
Solution: Add more tests. (Christian Brabandt)
Bram Moolenaar [Thu, 21 Jul 2016 18:33:32 +0000 (20:33 +0200)]
patch 7.4.2086
Problem: Using the system default encoding makes tests unpredictable.
Solution: Always use utf-8 or latin1 in the new style tests. Remove setting
encoding and scriptencoding where it is not needed.
Bram Moolenaar [Thu, 21 Jul 2016 08:11:03 +0000 (10:11 +0200)]
patch 7.4.2085
Problem: Digraph tests fails on some systems.
Solution: Run it separately and set 'encoding' early.
Bram Moolenaar [Wed, 20 Jul 2016 20:23:49 +0000 (22:23 +0200)]
patch 7.4.2084
Problem: New digraph test makes testing hang.
Solution: Don't set "nocp".
Bram Moolenaar [Wed, 20 Jul 2016 20:11:06 +0000 (22:11 +0200)]
patch 7.4.2083
Problem: Coverity complains about not restoring a value.
Solution: Restore the value, although it's not really needed. Change return
to jump to cleanup, might leak memory.
Bram Moolenaar [Wed, 20 Jul 2016 20:01:12 +0000 (22:01 +0200)]
patch 7.4.2082
Problem: Not much test coverage for digraphs.
Solution: Add a new style digraph test. (Christian Brabandt)
Bram Moolenaar [Wed, 20 Jul 2016 19:44:37 +0000 (21:44 +0200)]
patch 7.4.2081
Problem: Line numbers in the error list are not always adjusted.
Solution: Set b_has_qf_entry properly. (Yegappan Lakshmanan)
Bram Moolenaar [Tue, 19 Jul 2016 22:10:51 +0000 (00:10 +0200)]
patch 7.4.2080
Problem: When using PERROR() on some systems assert_fails() does not see
the error.
Solution: Make PERROR() always report the error.
Bram Moolenaar [Tue, 19 Jul 2016 22:03:18 +0000 (00:03 +0200)]
patch 7.4.2079
Problem: Netbeans test fails on non-Unix systems.
Solution: Only do the permission check on Unix systems.
Bram Moolenaar [Tue, 19 Jul 2016 21:36:31 +0000 (23:36 +0200)]
patch 7.4.2078
Problem: Running checks in po diretory fails.
Solution: Add colors used in syntax.c to the builtiin color table.
Bram Moolenaar [Tue, 19 Jul 2016 21:13:03 +0000 (23:13 +0200)]
patch 7.4.2077
Problem: Cannot update 'tabline' when a tab was closed.
Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
Bram Moolenaar [Tue, 19 Jul 2016 20:43:11 +0000 (22:43 +0200)]
patch 7.4.2076
Problem: Syntax error when dict has '>' key.
Solution: Check for endchar. (Ken Takata)
Bram Moolenaar [Tue, 19 Jul 2016 20:31:36 +0000 (22:31 +0200)]
patch 7.4.2075
Problem: No autocommand event to initialize a window or tab page.
Solution: Add WinNew and TabNew events. (partly by Felipe Morales)
Bram Moolenaar [Tue, 19 Jul 2016 19:30:13 +0000 (21:30 +0200)]
patch 7.4.2074
Problem: One more place using a dummy variable.
Solution: Use offsetof(). (Ken Takata)
Bram Moolenaar [Tue, 19 Jul 2016 19:05:21 +0000 (21:05 +0200)]
patch 7.4.2073
Problem: rgb.txt is read for every color name.
Solution: Load rgb.txt once. (Christian Brabandt) Add a test.
Bram Moolenaar [Tue, 19 Jul 2016 17:10:51 +0000 (19:10 +0200)]
patch 7.4.2072
Problem: substitute() does not support a Funcref argument.
Solution: Support a Funcref like it supports a string starting with "\=".
Bram Moolenaar [Tue, 19 Jul 2016 15:25:25 +0000 (17:25 +0200)]
patch 7.4.2071
Problem: The return value of type() is difficult to use.
Solution: Define v:t_ constants. (Ken Takata)
Bram Moolenaar [Tue, 19 Jul 2016 15:01:31 +0000 (17:01 +0200)]
patch 7.4.2070
Problem: Missing change to include file.
Solution: Include the spell header file.
Bram Moolenaar [Tue, 19 Jul 2016 14:39:08 +0000 (16:39 +0200)]
patch 7.4.2069
Problem: spell.c is too big.
Solution: Split it in spell file handling and spell checking.
Bram Moolenaar [Tue, 19 Jul 2016 10:33:44 +0000 (12:33 +0200)]
patch 7.4.2068
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.
Bram Moolenaar [Mon, 18 Jul 2016 20:22:39 +0000 (22:22 +0200)]
patch 7.4.2067
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.
Bram Moolenaar [Sun, 17 Jul 2016 21:34:21 +0000 (23:34 +0200)]
patch 7.4.2066
Problem: getcompletion() not well tested.
Solution: Add more testing.
Bram Moolenaar [Sun, 17 Jul 2016 20:33:53 +0000 (22:33 +0200)]
patch 7.4.2065
Problem: Compiler warns for uninitialzed variable. (John Marriott)
Solution: Set lnum to the right value.
Bram Moolenaar [Sun, 17 Jul 2016 20:25:36 +0000 (22:25 +0200)]
patch 7.4.2064
Problem: Coverity warns for possible buffer overflow.
Solution: Use vim_strcat() instead of strcat().
Bram Moolenaar [Sun, 17 Jul 2016 20:13:49 +0000 (22:13 +0200)]
patch 7.4.2063
Problem: eval.c is still too big.
Solution: Split off internal functions to evalfunc.c.
Bram Moolenaar [Sun, 17 Jul 2016 18:37:43 +0000 (20:37 +0200)]
patch 7.4.2062
Problem: Using dummy variable to compute struct member offset.
Solution: Use offsetof().
Bram Moolenaar [Sun, 17 Jul 2016 17:25:04 +0000 (19:25 +0200)]
patch 7.4.2061
Problem: qf_init_ext() is too big.
Solution: Move code to qf_parse_line() (Yegappan Lakshmanan)
Bram Moolenaar [Sun, 17 Jul 2016 17:02:16 +0000 (19:02 +0200)]
patch 7.4.2060
Problem: Wrong file name.
Solution: Fix typo.
Bram Moolenaar [Sun, 17 Jul 2016 16:41:47 +0000 (18:41 +0200)]
patch 7.4.2059
Problem: Non-Unix builds fail.
Solution: Update Makefiles for new files.
Bram Moolenaar [Sun, 17 Jul 2016 16:29:19 +0000 (18:29 +0200)]
patch 7.4.2058
Problem: eval.c is too big.
Solution: Move user functions to userfunc.c
Bram Moolenaar [Sun, 17 Jul 2016 13:46:27 +0000 (15:46 +0200)]
patch 7.4.2057
Problem: eval.c is too big.
Solution: Move List functions to list.c
Bram Moolenaar [Sun, 17 Jul 2016 13:06:51 +0000 (15:06 +0200)]
patch 7.4.2056
Problem: Build fails.
Solution: Add missing changes.
Bram Moolenaar [Sun, 17 Jul 2016 12:57:05 +0000 (14:57 +0200)]
patch 7.4.2055
Problem: eval.c is too big.
Solution: Move Dictionary functions to dict.c.
Bram Moolenaar [Sun, 17 Jul 2016 11:35:14 +0000 (13:35 +0200)]
Update runtime files.
Bram Moolenaar [Sat, 16 Jul 2016 19:58:01 +0000 (21:58 +0200)]
Put building with interfaces on the right target.
Bram Moolenaar [Sat, 16 Jul 2016 19:52:46 +0000 (21:52 +0200)]
patch 7.4.2054
Problem: Wrong part of #ifdef removed.
Solution: Use the right part. (Hirohito Higashi)
Bram Moolenaar [Sat, 16 Jul 2016 19:37:49 +0000 (21:37 +0200)]
Correct build condition.
Bram Moolenaar [Sat, 16 Jul 2016 19:24:36 +0000 (21:24 +0200)]
Add missing "then".
Bram Moolenaar [Sat, 16 Jul 2016 19:18:34 +0000 (21:18 +0200)]
Add a separate build target for the unittests. Hopefully the coverage will be merged then.
Bram Moolenaar [Sat, 16 Jul 2016 18:55:12 +0000 (20:55 +0200)]
Run unittests before scripttests. Hopefully does not mess up coverage.
Bram Moolenaar [Sat, 16 Jul 2016 18:43:14 +0000 (20:43 +0200)]
patch 7.4.2053
Problem: Can't run scripttests in the top directory.
Solution: Add targets to the top Makefile.
Bram Moolenaar [Sat, 16 Jul 2016 18:37:56 +0000 (20:37 +0200)]
patch 7.4.2052
Problem: Coverage report is messed up by the unittests.
Solution: Add a separate test target for script tests. Use that when
collecting coverage information.
Bram Moolenaar [Sat, 16 Jul 2016 17:50:13 +0000 (19:50 +0200)]
patch 7.4.2051
Problem: No proper testing of trunc_string().
Solution: Add a unittest for message.c.
Bram Moolenaar [Sat, 16 Jul 2016 16:24:56 +0000 (18:24 +0200)]
patch 7.4.2050
Problem: When using ":vimgrep" may end up with duplicate buffers.
Solution: When adding an error list entry pass the buffer number if possible.
Bram Moolenaar [Sat, 16 Jul 2016 14:54:24 +0000 (16:54 +0200)]
patch 7.4.2049
Problem: There is no way to get a list of the error lists.
Solution: Add ":chistory" and ":lhistory".
Bram Moolenaar [Sat, 16 Jul 2016 12:47:36 +0000 (14:47 +0200)]
patch 7.4.2048
Problem: There is still code and help for unsupported systems.
Solution: Remove the code and text. (Hirohito Higashi)
Bram Moolenaar [Sat, 16 Jul 2016 12:20:45 +0000 (14:20 +0200)]
patch 7.4.2047
Problem: Compiler warning for initializing a struct.
Solution: Initialize in another way. (Anton Lindqvist)
Bram Moolenaar [Fri, 15 Jul 2016 20:54:41 +0000 (22:54 +0200)]
Updated runtime files.
Bram Moolenaar [Fri, 15 Jul 2016 20:36:01 +0000 (22:36 +0200)]
patch 7.4.2046
Problem: The qf_init_ext() function is too big.
Solution: Refactor it. (Yegappan Lakshmanan)
Bram Moolenaar [Fri, 15 Jul 2016 19:29:35 +0000 (21:29 +0200)]
patch 7.4.2045
Problem: Memory leak when using a function callback.
Solution: Don't save the function name when it's in the partial.
Bram Moolenaar [Fri, 15 Jul 2016 19:25:08 +0000 (21:25 +0200)]
patch 7.4.2044
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)
Bram Moolenaar [Fri, 15 Jul 2016 18:14:44 +0000 (20:14 +0200)]
patch 7.4.2043
Problem: setbuvfar() causes a screen redraw.
Solution: Only use aucmd_prepbuf() for options.
Bram Moolenaar [Fri, 15 Jul 2016 15:49:58 +0000 (17:49 +0200)]
patch 7.4.2042
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)
Bram Moolenaar [Fri, 15 Jul 2016 15:41:56 +0000 (17:41 +0200)]
patch 7.4.2041
Problem: Netbeans file authentication not tested.
Solution: Add a test.
Bram Moolenaar [Fri, 15 Jul 2016 15:11:37 +0000 (17:11 +0200)]
patch 7.4.2040
Problem: New files missing from distribution.
Solution: Add new test scripts.
Bram Moolenaar [Fri, 15 Jul 2016 15:09:11 +0000 (17:09 +0200)]
patch 7.4.2039
Problem: The Netbeans integration is not tested.
Solution: Add a first Netbeans test.
Bram Moolenaar [Thu, 14 Jul 2016 21:03:19 +0000 (23:03 +0200)]
patch 7.4.2038
Problem: Small build still fails.
Solution: Adjust more #ifdefs.