- May 25, 2011
-
-
Bram Moolenaar authored
Problem: Syntax "extend" doesn't work correctly. Solution: Avoid calling check_state_ends() recursively (Ben Schmidt)
-
Bram Moolenaar authored
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
-
Bram Moolenaar authored
Problem: MS-Windows: Can't run an external command without a console window. Solution: Support ":!start /b cmd". (Xaizek)
-
Bram Moolenaar authored
Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
-
Bram Moolenaar authored
Problem: "} else" still causes following lines to be indented too much. Solution: Better detection for the "else" block. (Lech Lorens)
-
Bram Moolenaar authored
Problem: CTRL-D doesn't complete :lang. Solution: Add the missing part of the change. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: MS-Windows: Compilation problem of OLE with MingW compiler. Solution: Put #ifdef around declarations. (Guopeng Wen)
-
- May 19, 2011
-
-
Bram Moolenaar authored
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
-
Bram Moolenaar authored
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 authored
Problem: Can't intercept a character that is going to be inserted. Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
-
Bram Moolenaar authored
Problem: "} else" causes following lines to be indented too much. (Rouben Rostamian) Solution: Better detection for the "else". (Lech Lorens)
-
Bram Moolenaar authored
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 authored
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 authored
Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes. (Dominique Pelle) Solution: Advance over whole character instead of one byte.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: When there is a "containedin" syntax argument highlighting may be wrong. (Radek) Solution: Reset current_next_list. (Ben Schmidt)
-
- May 10, 2011
-
-
Bram Moolenaar authored
Problem: Can't build without +clipboard feature. (Christian Ebert) Solution: Add the missing #ifdef.
-
Bram Moolenaar authored
Problem: More RISC OS files to remove. Solution: Remove them. Update the file list.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
-
Bram Moolenaar authored
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 authored
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 authored
Problem: Static code analysis errors in riscOS. Solution: Make buffer size bigger. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. Solution: Add dummy initializer.
-
Bram Moolenaar authored
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 authored
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 authored
Problem: C-indent doesn't handle colon in string correctly. Solution: Skip the string. (Lech Lorens)
-
Bram Moolenaar authored
Problem: C-indent doesn't handle code right after { correctly. Solution: Fix detecting unterminated line. (Lech Lorens)
-
- May 05, 2011
-
-
Bram Moolenaar authored
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is "utf-8". Solution: Convert to utf-16. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Ruby linking doesn't work properly on Mac OS X. Solution: Fix the configure check for Ruby. (Bjorn Winckler)
-
Bram Moolenaar authored
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 authored
Problem: When Exuberant ctags binary is exctags it's not found. Solution: Add configure check for exctags. (Hong Xu)
-
Bram Moolenaar authored
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 authored
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 authored
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)
-
- Apr 28, 2011
-
-
Bram Moolenaar authored
Problem: VMS Makefile for testing was not updated for test77. Solution: Add test77 to the Makefile.
-