Bram Moolenaar
e56132bb41
patch 7.4.2211
...
Problem: Mouse support is not automatically enabled with simple term.
Solution: Recognize "st" and other names. (Manuel Schiller, closes #963 )
v7.4.2211
2016-08-14 18:23:21 +02:00
Bram Moolenaar
cff50f5ec9
patch 7.4.2210
...
Problem: On OSX configure mixes up a Python framework and the Unix layout.
Solution: Make configure check properly. (Tim D. Smith, closes #980 )
v7.4.2210
2016-08-14 17:32:52 +02:00
Bram Moolenaar
35a4cfa200
patch 7.4.2209
...
Problem: Cannot map <M-">. (Stephen Riehm)
Solution: Solve the memory access problem in another way. (Dominique Pelle)
Allow for using <M-\"> in a string.
v7.4.2209
2016-08-14 16:07:48 +02:00
Bram Moolenaar
2d1a248762
patch 7.4.2208
...
Problem: Test for mappings is old style.
Solution: Convert the test to new style.
v7.4.2208
2016-08-14 15:32:11 +02:00
Bram Moolenaar
d58b0f982a
patch 7.4.2207
...
Problem: The +xpm feature is not sorted properly in :version output.
Solution: Move it up. (Tony Mechelynck)
v7.4.2207
2016-08-13 16:39:56 +02:00
Bram Moolenaar
4ae209597c
patch 7.4.2206
...
Problem: Warning for unused function.
Solution: Put the function inside #ifdef. (John Marriott)
v7.4.2206
2016-08-13 15:29:14 +02:00
Bram Moolenaar
e9d58a6459
patch 7.4.2205
...
Problem: 'wildignore' always applies to getcompletion().
Solution: Add an option to use 'wildignore' or not. (Yegappan Lakshmanan)
v7.4.2205
2016-08-13 15:07:41 +02:00
Bram Moolenaar
0952131376
Updated runtime files.
2016-08-12 22:54:35 +02:00
Bram Moolenaar
b5ae48e9ff
patch 7.4.2204
...
Problem: It is not easy to get information about buffers, windows and
tabpages.
Solution: Add getbufinfo(), getwininfo() and gettabinfo(). (Yegappan
Lakshmanan)
v7.4.2204
2016-08-12 22:23:25 +02:00
Bram Moolenaar
ebcccad573
patch 7.4.2203
...
Problem: Test fails with normal features.
Solution: Check is signs are supported.
v7.4.2203
2016-08-12 19:17:13 +02:00
Bram Moolenaar
b338483152
patch 7.4.2202
...
Problem: Build fails with small features.
Solution: Correct option initialization.
v7.4.2202
2016-08-12 18:51:58 +02:00
Bram Moolenaar
95ec9d6a6a
patch 7.4.2201
...
Problem: The sign column disappears when the last sign is deleted.
Solution: Add the 'signcolumn' option. (Christian Brabandt)
v7.4.2201
2016-08-12 18:29:59 +02:00
Bram Moolenaar
d823fa910c
patch 7.4.2200
...
Problem: Cannot get all information about a quickfix list.
Solution: Add an optional argument to get/set loc/qf list(). (Yegappan
Lakshmanan)
v7.4.2200
2016-08-12 16:29:27 +02:00
Bram Moolenaar
107abd2ca5
patch 7.4.2199
...
Problem: In the GUI the cursor is hidden when redrawing any window,
causing flicker.
Solution: Only undraw the cursor when updating the window it's in.
v7.4.2199
2016-08-12 14:08:25 +02:00
Bram Moolenaar
0e5d3a2940
patch 7.4.2198
...
Problem: Test alot sometimes fails under valgrind. (Dominique Pelle)
Solution: Avoid passing a callback with the wrong number of arguments.
v7.4.2198
2016-08-11 22:52:42 +02:00
Bram Moolenaar
c257487035
patch 7.4.2197
...
Problem: All functions are freed on exit, which may hide leaks.
Solution: Only free named functions, not reference counted ones.
v7.4.2197
2016-08-11 22:51:05 +02:00
Bram Moolenaar
91c5262b19
patch 7.4.2196
...
Problem: glob2regpat test doesn't test everything on MS-Windows.
Solution: Add patterns with backslash handling.
v7.4.2196
2016-08-10 23:02:45 +02:00
Bram Moolenaar
bcc1dcc981
patch 7.4.2195
...
Problem: MS-Windows: The vimrun program does not support Unicode.
Solution: Use GetCommandLineW(). Cleanup old #ifdefs. (Ken Takata)
v7.4.2195
2016-08-10 22:02:40 +02:00
Bram Moolenaar
446a973ce3
patch 7.4.2194
...
Problem: Sign tests don't cover enough.
Solution: Add more test cases. (Dominique Pelle)
v7.4.2194
2016-08-10 21:36:23 +02:00
Bram Moolenaar
717e196060
patch 7.4.2193
...
Problem: With Gnome when the GUI can't start test_startup hangs.
Solution: Call gui_mch_early_init_check(). (Hirohito Higashi)
v7.4.2193
2016-08-10 21:28:44 +02:00
Bram Moolenaar
a6b7a08ae0
patch 7.4.2192
...
Problem: Generating prototypes with Cygwin doesn't work well.
Solution: Change #ifdefs. (Ken Takata)
v7.4.2192
2016-08-10 20:53:05 +02:00
Bram Moolenaar
a357e44ccd
patch 7.4.2191
...
Problem: No automatic prototype for vim_main2().
Solution: Move the #endif. (Ken Takata)
v7.4.2191
2016-08-10 20:45:07 +02:00
Bram Moolenaar
50fa8dd00c
patch 7.4.2190
...
Problem: When startup test fails it's not easy to find out why.
GUI test fails with Gnome.
Solution: Add the help entry matches to a list an assert that.
Set $HOME for Gnome to create .gnome2 directory.
v7.4.2190
2016-08-09 22:58:21 +02:00
Bram Moolenaar
f71d7b9ee5
patch 7.4.2189
...
Problem: Cannot detect encoding in a fifo.
Solution: Extend the stdin way of detecting encoding to fifo. Add a test
for detecting encoding on stdin and fifo. (Ken Takata)
v7.4.2189
2016-08-09 22:14:05 +02:00
Bram Moolenaar
c9fb77c692
patch 7.4.2188
...
Problem: Completion does not work properly with some plugins.
Solution: Revert the part related to typing CTRL-E. (closes #972 )
v7.4.2188
2016-08-09 21:51:40 +02:00
Bram Moolenaar
7547a78446
patch 7.4.2187
...
Problem: glob2regpat test fails on Windows.
Solution: Remove the checks that use backslashes.
v7.4.2187
2016-08-08 23:26:51 +02:00
Bram Moolenaar
36d1c0fef4
patch 7.4.2186
...
Problem: Timers test is flaky.
Solution: Relax the sleep time check.
v7.4.2186
2016-08-08 22:46:14 +02:00
Bram Moolenaar
71dd9744cf
patch 7.4.2185
...
Problem: Test glob2regpat does not test much.
Solution: Add a few more test cases. (Dominique Pelle)
v7.4.2185
2016-08-08 22:42:04 +02:00
Bram Moolenaar
7a9a5f4019
patch 7.4.2184
...
Problem: Tests that use RunVim() do not actually perform the test.
Solution: Use "return" instead of "call". (Ken Takata)
v7.4.2184
2016-08-08 22:34:14 +02:00
Bram Moolenaar
09de17536d
patch 7.4.2183
...
Problem: Sign tests are old style.
Solution: Turn them into new style tests. (Dominique Pelle)
v7.4.2183
2016-08-08 22:26:48 +02:00
Bram Moolenaar
2147746cf8
patch 7.4.2182
...
Problem: Color Grey40 used in startup but not in the short list.
Solution: Add Grey40 to the builtin colors.
v7.4.2182
2016-08-08 20:43:27 +02:00
Bram Moolenaar
a772ec5e91
patch 7.4.2181
...
Problem: Compiler warning for unused variable.
Solution: Remove it. (Dominique Pelle)
v7.4.2181
2016-08-07 20:20:50 +02:00
Bram Moolenaar
b73598e2f0
patch 7.4.2180
...
Problem: There is no easy way to stop all timers. There is no way to
temporary pause a timer.
Solution: Add timer_stopall() and timer_pause().
v7.4.2180
2016-08-07 18:22:53 +02:00
Bram Moolenaar
e4a76ad0e7
patch 7.4.2179
...
Problem: Reading from stdin test fails on MS-Windows.
Solution: Strip the extra space.
v7.4.2179
2016-08-07 16:50:10 +02:00
Bram Moolenaar
3a93838339
patch 7.4.2178
...
Problem: No test for reading from stdin.
Solution: Add a test.
v7.4.2178
2016-08-07 16:36:40 +02:00
Bram Moolenaar
ba98bef191
patch 7.4.2177
...
Problem: No testing for -C and -N command line flags, file arguments,
startuptime.
Solution: Add tests.
v7.4.2177
2016-08-07 15:51:39 +02:00
Bram Moolenaar
a8e691d449
patch 7.4.2176
...
Problem: #ifdefs in main() are complicated.
Solution: Always define vim_main2(). Move params to the file level.
(suggested by Ken Takata)
v7.4.2176
2016-08-07 15:19:26 +02:00
Bram Moolenaar
812ad4f3a2
patch 7.4.2175
...
Problem: Insufficient testing of cscope.
Solution: Add more tests. (Dominique Pelle)
v7.4.2175
2016-08-07 14:03:13 +02:00
Bram Moolenaar
c8ce615299
patch 7.4.2174
...
Problem: Adding duplicate flags to 'whichwrap' leaves commas behind.
Solution: Also remove the commas. (Naruhiko Nishino)
v7.4.2174
2016-08-07 13:48:20 +02:00
Bram Moolenaar
3321e9d8a3
patch 7.4.2173
...
Problem: Can't test help on MS-Windows.
Solution: Skip the test.
v7.4.2173
2016-08-06 23:03:59 +02:00
Bram Moolenaar
472a0a880a
patch 7.4.2172
...
Problem: No test for "vim --help".
Solution: Add a test.
v7.4.2172
2016-08-06 22:31:42 +02:00
Bram Moolenaar
00ff380295
patch 7.4.2171
...
Problem: MS-Windows build fails.
Solution: Add QueryPerformanceCounter().
v7.4.2171
2016-08-06 22:27:28 +02:00
Bram Moolenaar
8e97bd74b5
patch 7.4.2170
...
Problem: Cannot get information about timers.
Solution: Add timer_info().
v7.4.2170
2016-08-06 22:05:07 +02:00
Bram Moolenaar
446cce6d53
patch 7.4.2169
...
Problem: Startup test gets stuck on MS-Windows.
Solution: Use double quotes.
v7.4.2169
2016-08-06 21:37:27 +02:00
Bram Moolenaar
5b4a3767f6
patch 7.4.2168
...
Problem: Not running the startup test on MS-Windows.
Solution: Write vimcmd.
v7.4.2168
2016-08-06 20:36:34 +02:00
Bram Moolenaar
c96a2f3b88
patch 7.4.2167
...
Problem: Small build can't run tests.
Solution: Don't try setting 'packpath'.
v7.4.2167
2016-08-06 19:45:31 +02:00
Bram Moolenaar
328604307b
patch 7.4.2166
...
Problem: Small build can't run startup test.
Solution: Skip the test.
v7.4.2166
2016-08-06 19:24:23 +02:00
Bram Moolenaar
83b3c3d8a0
patch 7.4.2165
...
Problem: Startup test fails on MS-Windows.
Solution: Don't check output if RunVim() returns zero.
v7.4.2165
2016-08-06 19:16:43 +02:00
Bram Moolenaar
66459b7c98
patch 7.4.2164
...
Problem: It is not possible to use plugins in an "after" directory to tune
the behavior of a package.
Solution: First load plugins from non-after directories, then packages and
finally plugins in after directories.
Reset 'loadplugins' before executing --cmd arguments.
v7.4.2164
2016-08-06 19:01:55 +02:00
Bram Moolenaar
d76a0c15f8
patch 7.4.2163
...
Problem: match() and related functions tested with old style test.
Solution: Convert to new style test. (Hirohito Higashi)
v7.4.2163
2016-08-06 15:29:22 +02:00