- May 10, 2011
-
-
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)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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
-
Bram Moolenaar authored
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 authored
Problem: Can't build on HP-UX. Solution: Remove an unnecessary backslash. (John Marriott)
-
- Mar 27, 2011
-
-
Bram Moolenaar authored
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.
-
- Mar 26, 2011
-
-
Bram Moolenaar authored
Problem: Can't build with Python dynamically loading. Solution: Add dll_PyType_Ready.
-
Bram Moolenaar authored
Problem: Crash with ":python help(dir)". (Kearn Holliday) Solution: Fix the way the type is set on objects. (Tobias Columbus)
-
- Mar 22, 2011
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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 authored
-