Bram Moolenaar [Sun, 26 Jun 2011 17:40:23 +0000 (19:40 +0200)]
updated for version 7.3.237
Problem: "filetype" completion doesn't work on Windows. (Yue Wu)
Solution: Don't use a glob pattern for the directories, use a list of
directories. (Dominique Pelle)
Bram Moolenaar [Sun, 26 Jun 2011 02:25:30 +0000 (04:25 +0200)]
updated for version 7.3.233
Problem: ":scriptnames" and ":breaklist" show long file names.
Solution: Shorten to use "~/" when possible. (Jean-Rene David)
Bram Moolenaar [Sun, 26 Jun 2011 01:18:52 +0000 (03:18 +0200)]
updated for version 7.3.231
Problem: Runtime file patches failed.
Solution: Redo the patches made against the patched files instead of the
files in the mercurial repository.
Bram Moolenaar [Sun, 19 Jun 2011 22:53:15 +0000 (00:53 +0200)]
updated for version 7.3.229
Problem: Using fork() makes gvim crash on Mac when build with
CoreFoundation.
Solution: Disallow fork() when __APPLE__ is defined. (Hisashi T Fujinaka)
Bram Moolenaar [Sun, 19 Jun 2011 22:45:58 +0000 (00:45 +0200)]
updated for version 7.3.228
Problem: "2gj" does not always move to the correct position.
Solution: Get length of line after moving to a next line. (James Vega)
Bram Moolenaar [Sun, 19 Jun 2011 02:54:21 +0000 (04:54 +0200)]
updated for version 7.3.226
Problem: On a 64 bit system "syn sync fromstart" is very slow. (Bjorn
Steinbrink)
Solution: Store the state when starting to parse from the first line.
Bram Moolenaar [Sun, 19 Jun 2011 02:32:15 +0000 (04:32 +0200)]
updated for version 7.3.225
Problem: Using "\n" in a substitute inside ":s" does not result in a line
break.
Solution: Change behavior inside vim_regexec_nl(). Add tests. (Motoya
Kurotsu)
Bram Moolenaar [Sat, 18 Jun 2011 23:30:07 +0000 (01:30 +0200)]
updated for version 7.3.223
Problem: MingW cross compilation doesn't work with tiny features.
Solution: Move acp_to_enc(), enc_to_utf16() and utf16_to_enc() outside of
"#ifdef CLIPBOARD". Fix typo in makefile.
Bram Moolenaar [Sat, 18 Jun 2011 23:14:29 +0000 (01:14 +0200)]
updated for version 7.3.221
Problem: Text from the clipboard is sometimes handled as linewise, but not
consistently.
Solution: Assume the text is linewise when it ends in a CR or NL.
Bram Moolenaar [Sat, 18 Jun 2011 22:27:51 +0000 (00:27 +0200)]
updated for version 7.3.220
Problem: Python 3: vim.error is a 'str' instead of an 'Exception' object,
so 'except' or 'raise' it causes a 'SystemError' exception.
Buffer objects do not support slice assignment.
When exchanging text between Vim and Python, multibyte texts become
gabage or cause Unicode Expceptions, etc.
'py3file' tries to read in the file as Unicode, sometimes causes
UnicodeDecodeException
Solution: Fix the problems. (lilydjwg)
Bram Moolenaar [Sun, 12 Jun 2011 23:19:56 +0000 (01:19 +0200)]
updated for version 7.3.217
Problem: Inside an "if" a ":wincmd" causes problems.
Solution: When skipping commands let ":wincmd" skip over its argument.
Bram Moolenaar [Sun, 12 Jun 2011 23:07:27 +0000 (01:07 +0200)]
updated for version 7.3.216
Problem: When recovering a file a range of lines is missing. (Charles Jie)
Solution: Reset the index when advancing to the next pointer block. Add a
test to verify recovery works.
Bram Moolenaar [Sun, 12 Jun 2011 20:03:23 +0000 (22:03 +0200)]
updated for version 7.3.214
Problem: The text displayed by ":z-" isn't exactly like old Vi.
Solution: Add one to the start line number. (ChangZhuo Chen)
Bram Moolenaar [Sun, 12 Jun 2011 19:51:08 +0000 (21:51 +0200)]
updated for version 7.3.213
Problem: Javascript object literal is not indented correctly.
Solution: Make a special case for when "J1" is in 'cino'. (Luc Deschenaux)
Bram Moolenaar [Sun, 12 Jun 2011 19:37:13 +0000 (21:37 +0200)]
updated for version 7.3.212
Problem: With Python 3.2 ":py3" fails.
Solution: Move PyEval_InitThreads() to after Py_Initialize(). (Roland
Puntaier) Check abiflags in configure. (Andreas Behr)
Bram Moolenaar [Wed, 25 May 2011 11:34:04 +0000 (13:34 +0200)]
updated for version 7.3.201
Problem: "} else" still causes following lines to be indented too much.
Solution: Better detection for the "else" block. (Lech Lorens)
Bram Moolenaar [Wed, 25 May 2011 10:09:50 +0000 (12:09 +0200)]
updated for version 7.3.199
Problem: MS-Windows: Compilation problem of OLE with MingW compiler.
Solution: Put #ifdef around declarations. (Guopeng Wen)
Bram Moolenaar [Thu, 19 May 2011 15:42:59 +0000 (17:42 +0200)]
updated for version 7.3.197
Problem: When a QuickfixCmdPost event removes all errors, Vim still tries
to jump to the first error, resulting in E42.
Solution: Get the number of error after the autocmd event. (Mike Lundy)
Bram Moolenaar [Thu, 19 May 2011 15:25:41 +0000 (17:25 +0200)]
updated for version 7.3.196
Problem: Can't intercept a character that is going to be inserted.
Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
Bram Moolenaar [Thu, 19 May 2011 14:35:09 +0000 (16:35 +0200)]
updated for version 7.3.195
Problem: "} else" causes following lines to be indented too much. (Rouben
Rostamian)
Solution: Better detection for the "else". (Lech Lorens)
Bram Moolenaar [Thu, 19 May 2011 12:59:10 +0000 (14:59 +0200)]
updated for version 7.3.194
Problem: When "b" is a symlink to directory "a", resolve("b/") doesn't
result in "a/". (ZyX)
Solution: Remove the trailing slash. (Jean-Rene David)
Bram Moolenaar [Thu, 19 May 2011 12:50:54 +0000 (14:50 +0200)]
updated for version 7.3.193
Problem: In the command line window ":close" doesn't work properly. (Tony
Mechelynck)
Solution: Use Ctrl_C instead of K_IGNORE for cmdwin_result. (Jean-Rene
David)
Bram Moolenaar [Thu, 19 May 2011 12:30:16 +0000 (14:30 +0200)]
updated for version 7.3.192
Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes.
(Dominique Pelle)
Solution: Advance over whole character instead of one byte.
Bram Moolenaar [Thu, 19 May 2011 11:41:14 +0000 (13:41 +0200)]
updated for version 7.3.191
Problem: Still some RISC OS stuff to remove.
Solution: Remove files and lines. (Hong Xu)
Remove the 'osfiletype' option code.
Bram Moolenaar [Thu, 19 May 2011 10:14:10 +0000 (12:14 +0200)]
updated for version 7.3.190
Problem: When there is a "containedin" syntax argument highlighting may be
wrong. (Radek)
Solution: Reset current_next_list. (Ben Schmidt)
Bram Moolenaar [Tue, 10 May 2011 14:12:45 +0000 (16:12 +0200)]
updated for version 7.3.186
Problem: When 'clipboard' contains "unnamed" or "unnamedplus" the value of
v:register is wrong for operators without a specific register.
Solution: Adjust the register according to 'clipboard'. (Ingo Karkat)
Bram Moolenaar [Tue, 10 May 2011 14:00:47 +0000 (16:00 +0200)]
updated for version 7.3.185
Problem: ":windo g/pattern/q" closes windows and reports "N more lines".
(Tim Chase)
Solution: Remember what buffer ":global" started in. (Jean-Rene David)
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)