Bram Moolenaar
8507747600
patch 8.0.0040
...
Problem: Whole line highlighting with matchaddpos() does not work.
Solution: Check for zero length. (Hirohito Higashi)
v8.0.0040
2016-10-16 14:35:48 +02:00
Bram Moolenaar
156919f99a
patch 8.0.0039
...
Problem: When Vim 8 reads an old viminfo and exits, the next time marks are
not read from viminfo. (Ned Batchelder)
Solution: Set a mark when it wasn't set before, even when the timestamp is
zero. (closes #1170 )
v8.0.0039
2016-10-15 20:46:20 +02:00
Bram Moolenaar
ca291aec99
patch 8.0.0038
...
Problem: OPEN_CHR_FILES not defined for FreeBSD using Debian userland
files.
Solution: Check for __FreeBSD_kernel__. (James McCoy, closes #1166 )
v8.0.0038
2016-10-15 19:33:50 +02:00
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 )
v8.0.0037
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)
v8.0.0036
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 )
v8.0.0035
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)
v8.0.0034
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)
v8.0.0033
2016-10-15 14:56:30 +02:00
Bram Moolenaar
4575876dc8
Updated runtime files.
2016-10-12 23:08:06 +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.
v8.0.0032
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)
v8.0.0031
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)
v8.0.0030
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)
v8.0.0029
2016-10-12 14:20:24 +02:00
Bram Moolenaar
a7c023ec88
patch 8.0.0028
...
Problem: Superfluous semicolons.
Solution: Remove them. (Ozaki Kiichi)
v8.0.0028
2016-10-12 12:13:35 +02:00
Bram Moolenaar
dc08328821
Updated runtime files.
2016-10-11 08:57:33 +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)
v8.0.0027
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)
v8.0.0026
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)
v8.0.0025
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.
v8.0.0024
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)
v8.0.0023
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)
v8.0.0022
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)
v8.0.0021
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.
v8.0.0020
2016-10-02 16:51:57 +02:00
Bram Moolenaar
2ec618c9fe
Updated runtime files.
2016-10-01 14:47:05 +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.
v8.0.0019
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.
v8.0.0018
2016-09-29 15:18:57 +02:00
Bram Moolenaar
1777785751
Missing part of patch 8.0.0014
2016-09-27 21:30:22 +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.
v8.0.0017
2016-09-27 21:28:56 +02:00
Bram Moolenaar
0e77b7691e
patch 8.0.0016
...
Problem: Build fails.
Solution: Include missing change.
v8.0.0016
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.
v8.0.0015
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.
v8.0.0014
2016-09-26 20:14:56 +02:00
Bram Moolenaar
c79d6aa01d
patch 8.0.0013
...
Problem: Missing comma in list.
Solution: Add the comma.
v8.0.0013
2016-09-25 22:27:37 +02:00
Bram Moolenaar
3e496b0ea3
Updated runtime files.
2016-09-25 22:11:48 +02:00
Bram Moolenaar
9af4184276
patch 8.0.0012
...
Problem: Typos in comments.
Solution: Change "its" to "it's". (Matthew Brener, closes #1088 )
v8.0.0012
2016-09-25 21:45:05 +02:00
Bram Moolenaar
20eeb6129d
Fix patch applied twice.
2016-09-25 21:06:50 +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.
v8.0.0011
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.
v8.0.0010
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)
v8.0.0009
2016-09-25 20:22:02 +02:00
Bram Moolenaar
50ba526fbf
Updated runtime files.
2016-09-22 22:33: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)
v8.0.0008
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 )
v8.0.0007
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 )
v8.0.0006
2016-09-20 21:39:14 +02:00
Bram Moolenaar
d07969093a
Updated runtime files.
2016-09-16 20:02:31 +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 )
v8.0.0005
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.
v8.0.0004
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 )
v8.0.0003
2016-09-12 19:51:11 +02:00
Bram Moolenaar
b56e7ff0db
Update translations for intro page.
2016-09-12 16:41:04 +02:00
Bram Moolenaar
9e1e7afc1f
patch 8.0.0002
...
Problem: The netrw plugin does not work.
Solution: Make it accept version 8.0.
v8.0.0002
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.
v8.0.0001
2016-09-12 16:23:34 +02:00
Bram Moolenaar
bb76f24af2
Vim 8.0 release
v8.0.0000
2016-09-12 14:24:39 +02:00