- May 10, 2011
-
-
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.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Freeing memory already freed, warning from static code analyzer. Solution: Initialize pointers to NULL, correct use of "mustfree". (partly by Dominique Pelle)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: When using the internal grep QuickFixCmdPost is not triggered. (Yukihiro Nakadaira) Solution: Change the place where autocommands are triggered.
-
Bram Moolenaar authored
Problem: Buffer on the stack may be too big Solution: Allocate the space.
-
Bram Moolenaar authored
Problem: ":find" completion does not escape spaces in a directory name. (Isz) Solution: Add backslashes for EXPAND_FILES_IN_PATH. (Carlo Teubner)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: For the default of 'shellpipe' "mksh" and "pdksh" are not recognized. Solution: Recognize these shell names.
-
- Apr 21, 2011
-
-
Bram Moolenaar authored
Problem: No error message when assigning to a list with an index out of range. (Yukihiro Nakadaira) Solution: Add the error message.
-
- Apr 11, 2011
-
-
Bram Moolenaar authored
Problem: Items on the stack may be too big. Solution: Make items static or allocate them.
-
Bram Moolenaar authored
Problem: Unsafe string copying. Solution: Use vim_strncpy() instead of strcpy(). Use vim_strcat() instead of strcat().
-
Bram Moolenaar authored
Problem: Using uninitialized pointer when out of memory. Solution: Check for NULL return value.
-
Bram Moolenaar authored
Problem: Might use uninitialized memory in C indenting. Solution: Init arrays to empty.
-
Bram Moolenaar authored
Problem: Superfluous assignment. Solution: Remove assignment.
-
Bram Moolenaar authored
Problem: Tty names possibly left unterminated. Solution: Use vim_strncpy() instead of strncpy().
-
Bram Moolenaar authored
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.
-
- Apr 02, 2011
-
-
Bram Moolenaar authored
Problem: Can't compile with tiny features. (Tony Mechelynck) Solution: Move #define outside of #ifdef.
-
Bram Moolenaar authored
Problem: Compiler warning for ambiguous else, missing prototype. Solution: Add braces. (Dominique Pelle) Add prototype for die().
-
- Apr 01, 2011
-
-
Bram Moolenaar authored
Problem: Xxd does not check for errors from library functions. Solution: Add error checks. (Florian Zumbiehl)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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)
-