Bram Moolenaar [Tue, 10 May 2011 12:22:16 +0000 (14:22 +0200)]
updated for version 7.3.181
Problem: When repeating the insert of CTRL-V or a digraph the display may
not be updated correctly.
Solution: Only call edit_unputchar() after edit_putchar(). (Lech Lorens)
Bram Moolenaar [Tue, 10 May 2011 11:38:27 +0000 (13:38 +0200)]
updated for version 7.3.180
Problem: When both a middle part of 'comments' matches and an end part, the
middle part was used errornously.
Solution: After finding the middle part match continue looking for a better
end part match. (partly by Lech Lorens)
Bram Moolenaar [Thu, 5 May 2011 16:31:59 +0000 (18:31 +0200)]
updated for version 7.3.177
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is
"utf-8".
Solution: Convert to utf-16. (Yukihiro Nakadaira)
Bram Moolenaar [Thu, 5 May 2011 15:32:44 +0000 (17:32 +0200)]
updated for version 7.3.175
Problem: When 'colorcolumn' is set locally to a window, ":new" opens a
window with the same highlighting but 'colorcolumn' is empty.
(Tyru)
Solution: Call check_colorcolumn() after clearing and copying options.
(Christian Brabandt)
Bram Moolenaar [Thu, 5 May 2011 15:14:14 +0000 (17:14 +0200)]
updated for version 7.3.173
Problem: After using setqflist() to make the quickfix list empty ":cwindow"
may open the window anyway. Also after ":vimgrep".
Solution: Correctly check whether the list is empty. (Ingo Karkat)
Bram Moolenaar [Thu, 5 May 2011 14:41:24 +0000 (16:41 +0200)]
updated for version 7.3.172
Problem: MS-Windows: rename() might delete the file if the name differs but
it's actually the same file.
Solution: Use the file handle to check if it's the same file. (Yukihiro
Nakadaira)
Bram Moolenaar [Thu, 5 May 2011 12:26:41 +0000 (14:26 +0200)]
updated for version 7.3.171
Problem: When the clipboard isn't supported: ":yank*" gives a confusing
error message.
Solution: Specifically mention that the register name is invalid.
(Jean-Rene David)
updated for version 7.3.169
Problem: Freeing memory already freed, warning from static code analyzer.
Solution: Initialize pointers to NULL, correct use of "mustfree". (partly by
Dominique Pelle)
updated for version 7.3.168
Problem: When the second argument of input() contains a CR the text up to
that is used without asking the user. (Yasuhiro Matsumoto)
Solution: Change CR, NL and ESC in the text to a space.
updated for version 7.3.167
Problem: When using the internal grep QuickFixCmdPost is not triggered.
(Yukihiro Nakadaira)
Solution: Change the place where autocommands are triggered.
updated for version 7.3.165
Problem: ":find" completion does not escape spaces in a directory name.
(Isz)
Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
updated for version 7.3.164
Problem: C-indenting: a preprocessor statement confuses detection of a
function delcaration.
Solution: Ignore preprocessor lines. (Lech Lorens) Also recognize the style
to put a comma before the argument name.
updated for version 7.3.162
Problem: No error message when assigning to a list with an index out of
range. (Yukihiro Nakadaira)
Solution: Add the error message.
updated for version 7.3.155
Problem: Crash when using map(), filter() and remove() on v:. (ZyX)
Also for extend(). (Yukihiro Nakadaira)
Solution: Mark v: as locked. Also correct locking error messages.
updated for version 7.3.151
Problem: When "unnamedplus" is in 'clipboard' the selection is sometimes
also copied to the star register.
Solution: Avoid copy to the star register when undesired. (James Vega)
updated for version 7.3.150
Problem: readline() does not return the last line when the NL is missing.
(Hong Xu)
Solution: When at the end of the file Also check for a previous line.
updated for version 7.3.149
Problem: The cursor disappears after the processing of the 'setDot'
netbeans command when vim runs in a terminal.
Solution: Show the cursor after a screen update. (Xavier de Gaye, 2011
updated for version 7.3.148
Problem: A syntax file with a huge number of items or clusters causes weird
behavior, a hang or a crash. (Yukihiro Nakadaira)
Solution: Check running out of IDs. (partly by Ben Schmidt)
Bram Moolenaar [Sun, 27 Mar 2011 14:03:15 +0000 (16:03 +0200)]
updated for version 7.3.146
Problem: It's possible to assign to a read-only member of a dict.
It's possible to create a global variable "0". (ZyX)
It's possible to add a v: variable with ":let v:.name = 1".
Solution: Add check for dict item being read-only.
Check the name of g: variables.
Disallow adding v: variables.
Bram Moolenaar [Sat, 26 Mar 2011 12:56:48 +0000 (13:56 +0100)]
updated for version 7.3.144
Problem: Crash with ":python help(dir)". (Kearn Holliday)
Solution: Fix the way the type is set on objects. (Tobias Columbus)
Bram Moolenaar [Tue, 22 Mar 2011 17:10:45 +0000 (18:10 +0100)]
updated for version 7.3.143
Problem: Memfile is not tested sufficiently. Looking up blocks in a
memfile is slow when there are many blocks.
Solution: Add high level test and unittest. Adjust the number of hash
buckets to the number of blocks. (Ivan Krasilnikov)
Bram Moolenaar [Tue, 22 Mar 2011 14:47:44 +0000 (15:47 +0100)]
updated for version 7.3.142
Problem: Python stdout doesn't have a flush() method, causing an import to
fail.
Solution: Add a dummy flush() method. (Tobias Columbus)
Bram Moolenaar [Tue, 22 Mar 2011 13:35:05 +0000 (14:35 +0100)]
updated for version 7.3.141
Problem: When a key code is not set get a confusing error message.
Solution: Change the error message to say the key code is not set.
Bram Moolenaar [Tue, 22 Mar 2011 12:29:24 +0000 (13:29 +0100)]
updated for version 7.3.140
Problem: Crash when drawing the "$" at end-of-line for list mode just after
the window border and 'cursorline' is set.
Solution: Don't check for 'cursorline'. (Quentin Carbonneaux)
Bram Moolenaar [Tue, 22 Mar 2011 12:07:26 +0000 (13:07 +0100)]
updated for version 7.3.139
Problem: When 'lazyredraw' is set ":ver" output can't be read.
Solution: Don't redraw the screen when at a prompt or command line.
Bram Moolenaar [Thu, 3 Mar 2011 14:54:50 +0000 (15:54 +0100)]
updated for version 7.3.138
Problem: ":com" changes the multi-byte text of :echo. (Dimitar Dimitrov)
Solution: Search for K_SPECIAL as a byte, not a character. (Ben Schmidt)
Bram Moolenaar [Thu, 3 Mar 2011 14:04:08 +0000 (15:04 +0100)]
updated for version 7.3.137
Problem: When 'lazyredraw' is set the screen may not be updated. (Ivan
Krasilnikov)
Solution: Call update_screen() before waiting for input.
Bram Moolenaar [Fri, 25 Feb 2011 17:38:36 +0000 (18:38 +0100)]
updated for version 7.3.135
Problem: When there is no previous substitute pattern, the previous search
pattern is used. The other way around doesn't work.
Solution: When there is no previous search pattern, use the previous
substitute pattern if possible. (Christian Brabandt)
Bram Moolenaar [Fri, 25 Feb 2011 15:52:17 +0000 (16:52 +0100)]
updated for version 7.3.133
Problem: When using encryption it's not clear what method was used.
Solution: In the file message show "blowfish" when using blowfish.
Bram Moolenaar [Tue, 15 Feb 2011 16:39:22 +0000 (17:39 +0100)]
updated for version 7.3.124
Problem: When writing a file in binary mode it may be missing the final EOL
if a file previously read was missing the EOL. (Kevin Goodsell)
Solution: Move the write_no_eol_lnum into the buffer struct.
Bram Moolenaar [Tue, 15 Feb 2011 15:29:59 +0000 (16:29 +0100)]
updated for version 7.3.123
Problem: ml_get error when executing register being recorded into, deleting
lines and 'conceallevel' is set. (ZyX)
Solution: Don't redraw a line for concealing when it doesn't exist.
Bram Moolenaar [Tue, 15 Feb 2011 14:28:09 +0000 (15:28 +0100)]
updated for version 7.3.122
Problem: Having auto/config.mk in the repository causes problems.
Solution: Remove auto/config.mk from the distribution. In the toplevel
Makefile copy it from the "dist" file.
Bram Moolenaar [Tue, 15 Feb 2011 13:24:46 +0000 (14:24 +0100)]
updated for version 7.3.121
Problem: Complicated 'statusline' causes a crash. (Christian Brabandt)
Solution: Check that the number of items is not too big.
Bram Moolenaar [Tue, 15 Feb 2011 10:57:04 +0000 (11:57 +0100)]
updated for version 7.3.120
Problem: The message for an existing swap file is too long to fit in a 25
line terminal.
Solution: Make the message shorter. (Chad Miller)
Bram Moolenaar [Wed, 9 Feb 2011 16:42:57 +0000 (17:42 +0100)]
updated for version 7.3.117
Problem: On some systems --as-needed does not work, because the "tinfo"
library is included indirectly from "ncurses". (Charles Campbell)
Solution: In configure prefer using "tinfo" instead of "ncurses".
Bram Moolenaar [Wed, 9 Feb 2011 16:09:30 +0000 (17:09 +0100)]
updated for version 7.3.116
Problem: 'cursorline' is displayed too short when there are concealed
characters and 'list' is set. (Dennis Preiser)
Solution: Check for 'cursorline' when 'list' is set. (Christian Brabandt)
Bram Moolenaar [Wed, 9 Feb 2011 14:59:37 +0000 (15:59 +0100)]
updated for version 7.3.114
Problem: Potential problem in initialization when giving an error message
early.
Solution: Initialize 'verbosefile' empty. (Ben Schmidt)
Bram Moolenaar [Wed, 9 Feb 2011 13:47:03 +0000 (14:47 +0100)]
updated for version 7.3.113
Problem: Windows: Fall back directory for creating temp file is wrong.
Solution: Use "." instead of empty string. (Hong Xu)
Bram Moolenaar [Tue, 1 Feb 2011 17:01:11 +0000 (18:01 +0100)]
updated for version 7.3.111
Problem: Executing a :normal command in 'statusline' evaluation causes the
cursor to move. (Dominique Pelle)
Solution: When updating the cursor for 'cursorbind' allow the cursor beyond
the end of the line. When evaluating 'statusline' temporarily
reset 'cursorbind'.
Bram Moolenaar [Tue, 1 Feb 2011 12:59:48 +0000 (13:59 +0100)]
updated for version 7.3.109
Problem: Processing new Esperanto spell file fails and crashes Vim.
(Dominique Pelle)
Solution: When running out of memory give an error. Handle '?' in
COMPOUNDRULE properly.
Bram Moolenaar [Sat, 22 Jan 2011 20:05:07 +0000 (21:05 +0100)]
updated for version 7.3.106
Problem: When 'cursorbind' is set another window may scroll unexpectedly
when 'scrollbind' is also set. (Xavier Wang)
Solution: Don't call update_topline() if 'scrollbind' is set.
Bram Moolenaar [Fri, 21 Jan 2011 23:11:50 +0000 (00:11 +0100)]
updated for version 7.3.103
Problem: Changing 'fileformat' and then using ":w" in an empty file sets
the 'modified' option.
Solution: In unchanged() don't ignore 'ff' for an empty file.
Bram Moolenaar [Mon, 17 Jan 2011 19:08:11 +0000 (20:08 +0100)]
updated for version 7.3.102
Problem: When using ":make", typing the next command and then getting the
"reload" prompt the next command is (partly) eaten by the reload
prompt.
Solution: Accept ':' as a special character at the reload prompt to accept
the default choice and execute the command.
Bram Moolenaar [Sat, 8 Jan 2011 13:46:03 +0000 (14:46 +0100)]
updated for version 7.3.099
Problem: Crash when splitting a window with zero height. (Yukihiro
Nakadaira)
Solution: Don't set the fraction in a window with zero height.
Bram Moolenaar [Tue, 4 Jan 2011 18:25:50 +0000 (19:25 +0100)]
updated for version 7.3.098
Problem: Function that ignores error still causes called_emsg to be set.
E.g. when expand() fails the status line is disabled.
Solution: Move check for emsg_not_now() up. (James Vega)
Bram Moolenaar [Tue, 4 Jan 2011 18:03:27 +0000 (19:03 +0100)]
updated for version 7.3.097
Problem: Using ":call" inside "if 0" does not see that a function returns a
Dict and gives error for "." as string concatenation.
Solution: Use eval0() to skip over the expression. (Yasuhiro Matsumoto)
Bram Moolenaar [Tue, 4 Jan 2011 17:11:43 +0000 (18:11 +0100)]
updated for version 7.3.096
Problem: "gvim -nb" is not interruptable. Leaking file descriptor on
netbeans connection error.
Solution: Check for CTRL-C typed. Free file descriptor. (Xavier de Gaye)
Bram Moolenaar [Thu, 30 Dec 2010 13:50:52 +0000 (14:50 +0100)]
updated for version 7.3.093
Problem: New DLL dependencies in MingW with gcc 4.5.0.
Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen)