summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-05-25updated for version 7.3.203Bram Moolenaar
Problem: MS-Windows: Can't run an external command without a console window. Solution: Support ":!start /b cmd". (Xaizek)
2011-05-25updated for version 7.3.202Bram Moolenaar
Problem: Cannot influence the indent inside a namespace. Solution: Add the "N" 'cino' parameter. (Konstantin Lepa)
2011-05-25updated for version 7.3.201Bram Moolenaar
Problem: "} else" still causes following lines to be indented too much. Solution: Better detection for the "else" block. (Lech Lorens)
2011-05-25updated for version 7.3.200Bram Moolenaar
Problem: CTRL-D doesn't complete :lang. Solution: Add the missing part of the change. (Dominique Pelle)
2011-05-25updated for version 7.3.199Bram Moolenaar
Problem: MS-Windows: Compilation problem of OLE with MingW compiler. Solution: Put #ifdef around declarations. (Guopeng Wen)
2011-05-19updated for version 7.3.198Bram Moolenaar
Problem: No completion for ":lang". Solution: Get locales to complete from. (Dominique Pelle)
2011-05-19updated for version 7.3.197Bram Moolenaar
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)
2011-05-19updated for version 7.3.196Bram Moolenaar
Problem: Can't intercept a character that is going to be inserted. Solution: Add the InsertCharPre autocommand event. (Jakson A. Aquino)
2011-05-19updated for version 7.3.195Bram Moolenaar
Problem: "} else" causes following lines to be indented too much. (Rouben Rostamian) Solution: Better detection for the "else". (Lech Lorens)
2011-05-19updated for version 7.3.194Bram Moolenaar
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)
2011-05-19updated for version 7.3.193Bram Moolenaar
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)
2011-05-19updated for version 7.3.192Bram Moolenaar
Problem: Ex command ":s/ \?/ /g" splits multi-byte characters into bytes. (Dominique Pelle) Solution: Advance over whole character instead of one byte.
2011-05-19Updated message translations.Bram Moolenaar
2011-05-19updated for version 7.3.191Bram Moolenaar
Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
2011-05-19updated for version 7.3.190Bram Moolenaar
Problem: When there is a "containedin" syntax argument highlighting may be wrong. (Radek) Solution: Reset current_next_list. (Ben Schmidt)
2011-05-10updated for version 7.3.189Bram Moolenaar
Problem: Can't build without +clipboard feature. (Christian Ebert) Solution: Add the missing #ifdef.
2011-05-10updated for version 7.3.188Bram Moolenaar
Problem: More RISC OS files to remove. Solution: Remove them. Update the file list.
2011-05-10Remove the deleted RISC OS files.Bram Moolenaar
2011-05-10updated for version 7.3.187Bram Moolenaar
Problem: The RISC OS port has obvious errors and is not being maintained. Solution: Remove the RISC OS files and code.
2011-05-10updated for version 7.3.186Bram Moolenaar
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)
2011-05-10updated for version 7.3.185Bram Moolenaar
Problem: ":windo g/pattern/q" closes windows and reports "N more lines". (Tim Chase) Solution: Remember what buffer ":global" started in. (Jean-Rene David)
2011-05-10updated for version 7.3.184Bram Moolenaar
Problem: Static code analysis errors in riscOS. Solution: Make buffer size bigger. (Dominique Pelle)
2011-05-10updated for version 7.3.183Bram Moolenaar
Problem: When Exuberant ctags binary is exuberant-ctags it's not found. Solution: Add configure check for exuberant-ctags.
2011-05-10updated for version 7.3.182Bram Moolenaar
Problem: Compiler warning for uninitialized variable. Solution: Add dummy initializer.
2011-05-10updated for version 7.3.181Bram Moolenaar
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)
2011-05-10updated for version 7.3.180Bram Moolenaar
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)
2011-05-10updated for version 7.3.179Bram Moolenaar
Problem: C-indent doesn't handle colon in string correctly. Solution: Skip the string. (Lech Lorens)
2011-05-10updated for version 7.3.178Bram Moolenaar
Problem: C-indent doesn't handle code right after { correctly. Solution: Fix detecting unterminated line. (Lech Lorens)
2011-05-05updated for version 7.3.177Bram Moolenaar
Problem: MS-Windows: mkdir() doesn't work properly when 'encoding' is "utf-8". Solution: Convert to utf-16. (Yukihiro Nakadaira)
2011-05-05updated for version 7.3.176Bram Moolenaar
Problem: Ruby linking doesn't work properly on Mac OS X. Solution: Fix the configure check for Ruby. (Bjorn Winckler)
2011-05-05updated for version 7.3.175Bram Moolenaar
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)
2011-05-05updated for version 7.3.174Bram Moolenaar
Problem: When Exuberant ctags binary is exctags it's not found. Solution: Add configure check for exctags. (Hong Xu)
2011-05-05updated for version 7.3.173Bram Moolenaar
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)
2011-05-05updated for version 7.3.172Bram Moolenaar
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)
2011-05-05updated for version 7.3.171Bram Moolenaar
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)
2011-04-28updated for version 7.3.170Bram Moolenaar
Problem: VMS Makefile for testing was not updated for test77. Solution: Add test77 to the Makefile.
2011-04-28updated for version 7.3.169Bram Moolenaar
Problem: Freeing memory already freed, warning from static code analyzer. Solution: Initialize pointers to NULL, correct use of "mustfree". (partly by Dominique Pelle)
2011-04-28updated for version 7.3.168Bram Moolenaar
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.
2011-04-28updated for version 7.3.167Bram Moolenaar
Problem: When using the internal grep QuickFixCmdPost is not triggered. (Yukihiro Nakadaira) Solution: Change the place where autocommands are triggered.
2011-04-28updated for version 7.3.166Bram Moolenaar
Problem: Buffer on the stack may be too big Solution: Allocate the space.
2011-04-28updated for version 7.3.165Bram Moolenaar
Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
2011-04-28updated for version 7.3.164Bram Moolenaar
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.
2011-04-28updated for version 7.3.163Bram Moolenaar
Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not recognized. Solution: Recognize these shell names.
2011-04-21updated for version 7.3.162Bram Moolenaar
Problem: No error message when assigning to a list with an index out of range. (Yukihiro Nakadaira) Solution: Add the error message.
2011-04-11updated for version 7.3.161Bram Moolenaar
Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
2011-04-11updated for version 7.3.160Bram Moolenaar
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
2011-04-11updated for version 7.3.159Bram Moolenaar
Problem: Using uninitialized pointer when out of memory. Solution: Check for NULL return value.
2011-04-11updated for version 7.3.158Bram Moolenaar
Problem: Might use uninitialized memory in C indenting. Solution: Init arrays to empty.
2011-04-11updated for version 7.3.157Bram Moolenaar
Problem: Superfluous assignment. Solution: Remove assignment.
2011-04-11updated for version 7.3.156Bram Moolenaar
Problem: Tty names possibly left unterminated. Solution: Use vim_strncpy() instead of strncpy().