Bram Moolenaar
0a9046fbcb
patch 8.0.0037
...
Problem: Get E924 when switching tabs. ()
Solution: Use win_valid_any_tab() instead of win_valid(). (Martin Vuille,
closes #1167 , closes #1171 )
2016-10-15 19:28:13 +02:00
Bram Moolenaar
97792de276
patch 8.0.0036
...
Problem: Detecting that a job has finished may take a while.
Solution: Check for a finished job more often (Ozaki Kiichi)
2016-10-15 18:36:49 +02:00
Bram Moolenaar
472e85970e
patch 8.0.0035
...
Problem: Order of matches for 'omnifunc' is messed up. (Danny Su)
Solution: Do not set compl_curr_match when called from complete_check().
(closes #1168 )
2016-10-15 17:06:47 +02:00
Bram Moolenaar
9e507ca8a3
patch 8.0.0034
...
Problem: No completion for ":messages".
Solution: Complete "clear" argument. (Hirohito Higashi)
2016-10-15 15:39:39 +02:00
Bram Moolenaar
a6c27ee6db
patch 8.0.0033
...
Problem: Cannot use overlapping positions with matchaddpos().
Solution: Check end of match. (Ozaki Kiichi) Add a test (Hirohito Higashi)
2016-10-15 14:56:30 +02:00
Bram Moolenaar
3e8474dd50
patch 8.0.0032
...
Problem: Tests may change the input file when something goes wrong.
Solution: Avoid writing the input file.
2016-10-12 17:52:42 +02:00
Bram Moolenaar
e8ef3a0934
patch 8.0.0031
...
Problem: After ":bwipeout" 'fileformat' is not set to the right default.
Solution: Get the default from 'fileformats'. (Mike Williams)
2016-10-12 17:45:29 +02:00
Bram Moolenaar
0ba407012c
patch 8.0.0030
...
Problem: Mouse mode is not automatically detected for tmux.
Solution: Check for 'term' to be "tmux". (Michael Henry)
2016-10-12 14:50:54 +02:00
Bram Moolenaar
cea912af72
patch 8.0.0029
...
Problem: Code for MS-Windows is complicated because of the exceptions for
old systems.
Solution: Drop support for MS-Windows older than Windows XP. (Ken Takata)
2016-10-12 14:20:24 +02:00
Bram Moolenaar
a7c023ec88
patch 8.0.0028
...
Problem: Superfluous semicolons.
Solution: Remove them. (Ozaki Kiichi)
2016-10-12 12:13:35 +02:00
Bram Moolenaar
dc0ccaee68
patch 8.0.0027
...
Problem: A channel is closed when reading on stderr or stdout fails, but
there may still be something to read on another part.
Solution: Turn ch_to_be_closed into a bitfield. (Ozaki Kiichi)
2016-10-09 17:28:01 +02:00
Bram Moolenaar
9b45794818
patch 8.0.0026
...
Problem: Error format with %W, %C and %Z does not work. (Gerd Wachsmuth)
Solution: Skip code when qf_multiignore is set. (Lcd)
2016-10-09 16:10:05 +02:00
Bram Moolenaar
936c48f8ca
patch 8.0.0025
...
Problem: Inconsistent use of spaces vs tabs in gd test.
Solution: Use tabs. (Anton Lindqvist)
2016-10-09 15:50:48 +02:00
Bram Moolenaar
8ddef48d1e
patch 8.0.0024
...
Problem: When the netbeans channel closes, "DETACH" is put in the output
part. (Ozaki Kiichi)
Solution: Write "DETACH" in the socket part.
2016-10-09 15:43:25 +02:00
Bram Moolenaar
226630a030
patch 8.0.0023
...
Problem: "gd" and "gD" may find a match in a comment or string.
Solution: Ignore matches in comments and strings. (Anton Lindqvist)
2016-10-08 19:21:31 +02:00
Bram Moolenaar
ec68a99464
patch 8.0.0022
...
Problem: If a channel in NL mode is missing the NL at the end the remaining
characters are dropped.
Solution: When the channel is closed use the remaining text. (Ozaki Kiichi)
2016-10-03 21:37:41 +02:00
Bram Moolenaar
84dbd494dc
patch 8.0.0021
...
Problem: In the GUI when redrawing the cursor it may be on the second half
of a double byte character.
Solution: Correct the cursor column. (Yasuhiro Matsumoto)
2016-10-02 23:09:31 +02:00
Bram Moolenaar
6100d02aab
patch 8.0.0020
...
Problem: The regexp engines are not reentrant.
Solution: Add regexec_T and save/restore the state when needed.
2016-10-02 16:51:57 +02:00
Bram Moolenaar
b3435b0a3a
patch 8.0.0019
...
Problem: Test_command_count is old style.
Solution: Turn it into a new style test. (Naruhiko Nishino)
Use more assert functions.
2016-09-29 20:54:59 +02:00
Bram Moolenaar
b9c31e71f5
patch 8.0.0018
...
Problem: When using ":sleep" channel input is not handled.
Solution: When there is a channel check for input also when not in raw mode.
Check every 100 msec.
2016-09-29 15:18:57 +02:00
Bram Moolenaar
890680ca63
patch 8.0.0017
...
Problem: Cannot get the number of the current quickfix or location list.
Solution: Use the current list if "nr" in "what" is zero. (Yegappan
Lakshmanan) Remove debug command from test.
2016-09-27 21:28:56 +02:00
Bram Moolenaar
0e77b7691e
patch 8.0.0016
...
Problem: Build fails.
Solution: Include missing change.
2016-09-26 22:58:58 +02:00
Bram Moolenaar
7ef3810d28
patch 8.0.0015
...
Problem: Can't tell which part of a channel has "buffered" status.
Solution: Add an optional argument to ch_status(). Let ch_info() also
return "buffered" for out_status and err_status.
2016-09-26 22:36:58 +02:00
Bram Moolenaar
1eceadaf48
patch 8.0.0014
...
Problem: Crypt tests are old style.
Solution: Convert to new style.
2016-09-26 20:14:56 +02:00
Bram Moolenaar
c79d6aa01d
patch 8.0.0013
...
Problem: Missing comma in list.
Solution: Add the comma.
2016-09-25 22:27:37 +02:00
Bram Moolenaar
9af4184276
patch 8.0.0012
...
Problem: Typos in comments.
Solution: Change "its" to "it's". (Matthew Brener, closes #1088 )
2016-09-25 21:45:05 +02:00
Bram Moolenaar
947000d6e4
patch 8.0.0011
...
Problem: On OSX Test_pipe_through_sort_all() sometimes fails.
Solution: Add the test to the list of flaky tests.
2016-09-25 21:03:02 +02:00
Bram Moolenaar
680e015bfe
patch 8.0.0010
...
Problem: Crash when editing file that starts with crypt yeader. (igor2x)
Solution: Check for length of text. (Christian Brabandt) Add a test.
2016-09-25 20:54:11 +02:00
Bram Moolenaar
3f1c15b24a
patch 8.0.0009
...
Problem: Unecessary workround for AppVeyor.
Solution: Revert patch 7.4.990. (Christian Brabandt)
2016-09-25 20:22:02 +02:00
Bram Moolenaar
9e02cfa226
patch 8.0.0008
...
Problem: Popup complete test is disabled.
Solution: Enable the test and change the assert. (Hirohito Higashi)
2016-09-22 21:27:11 +02:00
Bram Moolenaar
bbe917d9d4
patch 8.0.0007
...
Problem: Vim 7.4 is still mentioned in a few places.
Solution: Update to Vim 8. (Uncle Bill, closes #1094 )
2016-09-21 22:41:24 +02:00
Bram Moolenaar
ebdd90ac28
patch 8.0.0006
...
Problem: ":lb" is interpreted as ":lbottom" while the documentation says it
means ":lbuffer".
Solution: Adjust the order of the commands. (haya14busa, closes #1093 )
2016-09-20 21:39:14 +02:00
Bram Moolenaar
3c4ebeba17
patch 8.0.0005
...
Problem: Netbeans test fails with Python 3. (Jonathonf)
Solution: Encode the string before sending it. (closes #1070 )
2016-09-15 11:44:27 +02:00
Bram Moolenaar
5582ef1438
patch 8.0.0004
...
Problem: A string argument for function() that is not a function name
results in an error message with NULL. (Christian Brabandt)
Solution: Use the argument for the error message.
2016-09-14 22:16:13 +02:00
Bram Moolenaar
789a5c0e3d
patch 8.0.0003
...
Problem: getwinvar() returns wrong Value of boolean and number options,
especially non big endian systems. (James McCoy)
Solution: Cast the pointer to long or int. (closes #1060 )
2016-09-12 19:51:11 +02:00
Bram Moolenaar
9e1e7afc1f
patch 8.0.0002
...
Problem: The netrw plugin does not work.
Solution: Make it accept version 8.0.
2016-09-12 16:31:10 +02:00
Bram Moolenaar
6401024869
patch 8.0.0001
...
Problem: Intro screen still mentions version7. (Paul)
Solution: Change it to version8.
2016-09-12 16:23:34 +02:00
Bram Moolenaar
bb76f24af2
Vim 8.0 release
2016-09-12 14:24:39 +02:00
Bram Moolenaar
edeb846c1f
patch 7.4.2367
...
Problem: Test runner misses a comma.
Solution: Add the comma.
2016-09-12 13:32:02 +02:00
Bram Moolenaar
100f27721b
patch 7.4.2366
...
Problem: MS-Windows gvim.exe does not have DirectX support.
Solution: Add the DIRECTX to the script.
2016-09-12 13:18:29 +02:00
Bram Moolenaar
1b01005823
patch 7.4.2365
...
Problem: Needless line break. Confusing directory name.
Solution: Remove line break. Prepend "../" to "tools".
2016-09-12 12:24:11 +02:00
Bram Moolenaar
e1c8c7a674
patch 7.4.2364
...
Problem: Sort test sometimes fails.
Solution: Add it to the list of flaky tests.
2016-09-11 16:48:50 +02:00
Bram Moolenaar
cbeab96f87
patch 7.4.2363
...
Problem: Superfluous function prototypes.
Solution: Remove them.
2016-09-11 15:08:56 +02:00
Bram Moolenaar
4930a76a03
patch 7.4.2362
...
Problem: Illegal memory access with ":1@". (Dominique Pelle)
Solution: Correct cursor column after setting the line number. Also avoid
calling end_visual_mode() when not in Visual mode.
2016-09-11 14:39:53 +02:00
Bram Moolenaar
ee39ef0b93
patch 7.4.2361
...
Problem: Checking for last_timer_id to overflow is not reliable. (Ozaki
Kiichi)
Solution: Check for the number not going up.
2016-09-10 19:17:42 +02:00
Bram Moolenaar
80c3fd7c55
patch 7.4.2360
...
Problem: Invalid memory access when formatting. (Dominique Pelle)
Solution: Make sure cursor line and column are associated.
2016-09-10 15:52:55 +02:00
Bram Moolenaar
26fe0d5691
patch 7.4.2359
...
Problem: Memory leak in timer_start().
Solution: Check the right field to be NULL.
2016-09-10 14:27:30 +02:00
Bram Moolenaar
d47d83745f
patch 7.4.2358
...
Problem: Compiler warnings with Solaris Studio when using GTK3.
Solution: Define FUNC2GENERIC depending on the system. (Kazunobu Kuriyama)
2016-09-09 22:13:24 +02:00
Bram Moolenaar
46643713dc
patch 7.4.2357
...
Problem: Attempt to read history entry while not initialized.
Solution: Skip when the index is negative.
2016-09-09 21:42:36 +02:00
Bram Moolenaar
ea683da58c
patch 7.4.2356
...
Problem: Reading past end of line when using previous substitute pattern.
(Dominique Pelle)
Solution: Don't set "pat" only set "searchstr".
2016-09-09 21:41:34 +02:00