Bram Moolenaar
d0d0fe09cf
patch 7.4.732
...
Problem: The cursor line is not always updated for the "O" command.
Solution: Reset the VALID_CROW flag. (Christian Brabandt)
v7.4.732
2015-06-09 19:23:46 +02:00
Bram Moolenaar
7098ee5c37
patch 7.4.731
...
Problem: The tab menu shows "Close tab" even when it doesn't work.
Solution: Don't show "Close tab" for the last tab. (John Marriott)
v7.4.731
2015-06-09 19:14:24 +02:00
Bram Moolenaar
bc56336bb4
patch 7.4.730
...
Problem: When setting the crypt key and using a swap file, text may be
encrypted twice or unencrypted text remains in the swap file.
(Issue 369)
Solution: Call ml_preserve() before re-encrypting. Set correct index for
next pointer block.
v7.4.730
2015-06-09 18:35:25 +02:00
Bram Moolenaar
0481fee488
patch 7.4.729
...
Problem: Occasional crash with 'list' set.
Solution: Fix off-by-one error. (Christian Brabandt)
v7.4.729
2015-05-14 05:56:09 +02:00
Bram Moolenaar
4270496716
patch 7.4.728
...
Problem: Can't build with some version of Visual Studio 2015.
Solution: Recognize another version 14 number. (Sinan)
v7.4.728
2015-05-06 11:33:47 +02:00
Bram Moolenaar
9c60161888
patch 7.4.727
...
Problem: Cannot build GvimExt with MingW.
Solution: Add -lgdi32. (KF Leong)
v7.4.727
2015-05-06 06:51:50 +02:00
Bram Moolenaar
1fd3e30ce9
patch 7.4.726
...
Problem: Cannot build GvimExt.
Solution: Set APPVER to 5.0. (KF Leong)
v7.4.726
2015-05-05 10:25:16 +02:00
Bram Moolenaar
659c94d483
patch 7.4.725
...
Problem: ":call setreg('"', [])" reports an internal error.
Solution: Make the register empty. (Yasuhiro Matsumoto)
v7.4.725
2015-05-04 20:19:21 +02:00
Bram Moolenaar
7bc25aed33
patch 7.4.724
...
Problem: Vim icon does not show in Windows context menu. (issue 249)
Solution: Load the icon in GvimExt.
v7.4.724
2015-05-04 18:27:36 +02:00
Bram Moolenaar
4032cfdf17
patch 7.4.723
...
Problem: For indenting, finding the C++ baseclass can be slow.
Solution: Cache the result. (Hirohito Higashi)
v7.4.723
2015-05-04 17:50:33 +02:00
Bram Moolenaar
73284b973a
patch 7.4.722
...
Problem: 0x202f is not recognized as a non-breaking space character.
Solution: Add 0x202f to the list. (Christian Brabandt)
v7.4.722
2015-05-04 17:28:22 +02:00
Bram Moolenaar
d59c099120
patch 7.4.721
...
Problem: When 'list' is set Visual mode does not highlight anything in
empty lines. (mgaleski)
Solution: Check the value of lcs_eol in another place. (Christian Brabandt)
v7.4.721
2015-05-04 16:52:01 +02:00
Bram Moolenaar
f300ad230b
patch 7.4.720
...
Problem: Can't build with Visual Studio 2015.
Solution: Recognize the "version 14" numbers and omit /nodefaultlib when
appropriate. (Paul Moore)
v7.4.720
2015-05-04 16:18:42 +02:00
Bram Moolenaar
c4dc286fe6
patch 7.4.719
...
Problem: Overflow when adding MAXCOL to a pointer.
Solution: Subtract pointers instead. (James McCoy)
v7.4.719
2015-05-04 16:10:26 +02:00
Bram Moolenaar
81278efadf
patch 7.4.718
...
Problem: Autocommands triggered by quickfix cannot get the current title
value.
Solution: Set w:quickfix_title earlier. (Yannick)
Also move the check for a title into the function.
v7.4.718
2015-05-04 12:34:22 +02:00
Bram Moolenaar
1cd5e613b0
patch 7.4.717
...
Problem: ":let list += list" can change a locked list.
Solution: Check for the lock earlier. (Olaf Dabrunz)
v7.4.717
2015-05-04 11:10:27 +02:00
Bram Moolenaar
cad2fc9935
patch 7.4.716
...
Problem: When using the 'c' flag of ":substitute" and selecting "a" or "l"
at the prompt the flags are not remembered for ":&&". (Ingo
Karkat)
Solution: Save the flag values and restore them. (Hirohito Higashi)
v7.4.716
2015-05-04 10:46:03 +02:00
Bram Moolenaar
2186ffa2c7
patch 7.4.715
...
Problem: Invalid memory access when there are illegal bytes.
Solution: Get the length from the text, not from the character. (Dominique
Pelle)
v7.4.715
2015-05-04 10:33:15 +02:00
Bram Moolenaar
069dd08d8d
patch 7.4.714
...
Problem: Illegal memory access when there are illegal bytes.
Solution: Check the byte length of the character. (Dominique Pelle)
v7.4.714
2015-05-04 09:56:49 +02:00
Bram Moolenaar
ea98f8b4d6
patch 7.4.713
...
Problem: Wrong condition for #ifdef.
Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier)
v7.4.713
2015-05-04 09:31:11 +02:00
Bram Moolenaar
1510f996c5
patch 7.4.712
...
Problem: Missing change in another file.
Solution: Also change message.c
v7.4.712
2015-04-22 22:18:22 +02:00
Bram Moolenaar
4c6b3b20dd
patch 7.4.711
...
Problem: Missing change in one file.
Solution: Also change option.c
v7.4.711
2015-04-21 19:10:48 +02:00
Bram Moolenaar
7927836733
patch 7.4.710
...
Problem: It is not possible to make spaces visibible in list mode.
Solution: Add the "space" item to 'listchars'. (David Bürgin, issue 350)
v7.4.710
2015-04-21 18:33:48 +02:00
Bram Moolenaar
40ce3a4e1f
patch 7.4.709
...
Problem: ":tabmove" does not work as documented.
Solution: Make it work consistently. Update documentation and add tests.
(Hirohito Higashi)
v7.4.709
2015-04-21 18:08:39 +02:00
Bram Moolenaar
77354e78a8
patch 7.4.708
...
Problem: gettext() is called too often.
Solution: Do not call gettext() for messages until they are actually used.
(idea by Yasuhiro Matsumoto)
v7.4.708
2015-04-21 16:49:05 +02:00
Bram Moolenaar
3cbac309f7
patch 7.4.707
...
Problem: Undo files can have their executable bit set.
Solution: Strip of the executable bit. (Mikael Berthe)
v7.4.707
2015-04-21 16:12:06 +02:00
Bram Moolenaar
5b14f89164
patch 7.4.706
...
Problem: Window drawn wrong when 'laststatus' is zero and there is a
command-line window. (Yclept Nemo)
Solution: Set the status height a bit later. (Christian Brabandt)
v7.4.706
2015-04-21 15:43:05 +02:00
Bram Moolenaar
bbc1a592a0
patch 7.4.705
...
Problem: Can't build with Ruby 2.2.
Solution: Add #ifdefs to handle the incompatible change. (Andrei Olsen)
v7.4.705
2015-04-21 15:25:31 +02:00
Bram Moolenaar
d82a2a990b
patch 7.4.704
...
Problem: Searching for a character matches an illegal byte and causes
invalid memory access. (Dominique Pelle)
Solution: Do not match an invalid byte when search for a character in a
string. Fix equivalence classes using negative numbers, which
result in illegal bytes.
v7.4.704
2015-04-21 14:02:35 +02:00
Bram Moolenaar
f9bde2b152
patch 7.4.703
...
Problem: Compiler warning for start_dir unused when building unittests.
Solution: Move start_dir inside the #ifdef.
v7.4.703
2015-04-17 22:08:16 +02:00
Bram Moolenaar
d39a751280
patch 7.4.702
...
Problem: Joining an empty list does uneccessary work.
Solution: Let join() return early. (Marco Hinz)
v7.4.702
2015-04-16 22:51:22 +02:00
Bram Moolenaar
ec45c4a6df
patch 7.4.701
...
Problem: Compiler warning for using uninitialized variable. (Yasuhiro
Matsumoto)
Solution: Initialize it.
v7.4.701
2015-04-15 14:27:49 +02:00
Bram Moolenaar
ba172f2eab
Remove local-additions entries from help.txt.
2015-04-15 14:13:18 +02:00
Bram Moolenaar
0a63dedf99
Updated runtime files.
2015-04-15 13:31:24 +02:00
Bram Moolenaar
d5f6933d5c
patch 7.4.700
...
Problem: Fold can't be opened after ":move". (Ein Brown)
Solution: Delete the folding information and update it afterwards.
(Christian Brabandt)
v7.4.700
2015-04-15 12:43:50 +02:00
Bram Moolenaar
05b20fb14e
patch 7.4.699
...
Problem: E315 when trying to delete a fold. (Yutao Yuan)
Solution: Make sure the fold doesn't go beyond the last buffer line.
(Christian Brabandt)
v7.4.699
2015-04-13 20:52:36 +02:00
Bram Moolenaar
9bc174b69d
patch 7.4.698
...
Problem: Various problems with locked and fixed lists and dictionaries.
Solution: Disallow changing locked items, fix a crash, add tests. (Olaf
Dabrunz)
v7.4.698
2015-04-13 16:16:38 +02:00
Bram Moolenaar
d94682ffb4
patch 7.4.697
...
Problem: The filename used for ":profile" must be given literally.
Solution: Expand "~" and environment variables. (Marco Hinz)
v7.4.697
2015-04-13 15:37:56 +02:00
Bram Moolenaar
50ab994ab3
patch 7.4.696
...
Problem: Not freeing memory when encountering an error.
Solution: Free the stack before returning. (Eliseo Martínez)
v7.4.696
2015-04-13 15:28:12 +02:00
Bram Moolenaar
7c94ce910f
patch 7.4.695
...
Problem: Out-of-bounds read, dectected by Coverity.
Solution: Remember the value of cmap for the first matching encoding. Reset
cmap to that value if first matching encoding is going to be used.
(Eliseo Martínez)
v7.4.695
2015-04-13 14:45:27 +02:00
Bram Moolenaar
83d1b19015
More updated runtime files.
2015-04-13 14:22:40 +02:00
Bram Moolenaar
29d54df5cd
patch 7.4.694
...
Problem: Running tests changes the .viminfo file.
Solution: Disable viminfo in the text objects test.
v7.4.694
2015-04-13 12:58:12 +02:00
Bram Moolenaar
5a5f45917d
Updated runtime files.
2015-04-13 12:43:06 +02:00
Bram Moolenaar
695baeefe1
patch 7.4.693
...
Problem: Session file is not correct when there are multiple tab pages.
Solution: Reset the current window number for each tab page. (Jacob Niehus)
v7.4.693
2015-04-13 12:39:22 +02:00
Bram Moolenaar
de1502f2b4
patch 7.4.692 for Problem: Defining SOLARIS for no good reason. (Danek Duvall)
...
Solution: Remove it.
v7.4.692
2015-04-09 22:08:21 +02:00
Bram Moolenaar
f630387827
patch 7.4.691 for Problem: Can't build with MzScheme.
...
Solution: Change "cwd" into the global variable "start_dir".
v7.4.691
2015-04-03 17:59:43 +02:00
Bram Moolenaar
da6365774d
patch 7.4.690 for Problem: Memory access errors when changing indent in Ex mode. Also missing
...
redraw when using CTRL-U. (Knil Ino)
Solution: Update pointers after calling ga_grow().
v7.4.690
2015-04-03 17:11:45 +02:00
Bram Moolenaar
d87c36ea5e
updated for version 7.4.689
...
Problem: On MS-Windows, when 'autochdir' is set, diff mode with files in
different directories does not work. (Axel Bender)
Solution: Remember the current directory and use it where needed. (Christian
Brabandt)
v7.4.689
2015-04-03 14:56:49 +02:00
Bram Moolenaar
478c46e50f
updated for version 7.4.688
...
Problem: When "$" is in 'cpo' the popup menu isn't undrawn correctly.
(Issue 166)
Solution: When using the popup menu remove the "$".
v7.4.688
2015-03-31 19:18:00 +02:00
Bram Moolenaar
1e7813a187
updated for version 7.4.687
...
Problem: There is no way to use a different in Replace mode for a terminal.
Solution: Add t_SR. (Omar Sandoval)
v7.4.687
2015-03-31 18:31:03 +02:00