- May 07, 2010
-
-
Bram Moolenaar authored
Problem: Large file support is incorrect. Solution: Add AC_SYS_LARGEFILE to configure. (James Vega)
-
Bram Moolenaar authored
Problem: [ or ] followed by mouse click doesn't work. Solution: Reverse check for key being a mouse event. (Dominique Pelle)
-
- Mar 23, 2010
-
-
Bram Moolenaar authored
Problem: When parsing 'cino' a comma isn't skipped properly. Solution: Skip the comma. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Highlighting directories for completion doesn't work properly. Solution: Don't halve backslashes when not needed, expaned "~/". (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Summary of number of substitutes is incorrect for ":folddo". (Jean Johner) Solution: Reset sub_nsubs and sub_nlines in global_exe().
-
Bram Moolenaar authored
Problem: With ":g/the/s/foo/bar/" the '[ and '] marks can be set to a line that was not changed. Solution: Only set '[ and '] marks when a substitution was done.
-
Bram Moolenaar authored
Problem: When using an expression in ":s" backslashes in the result are dropped. (Sergey Goldgaber, Christian Brabandt) Solution: Double backslashes.
-
Bram Moolenaar authored
Problem: Patch 7.2.119 introduces uninit mem read. (Dominique Pelle) Solution: Only used ScreeenLinesC when ScreeenLinesUC is not zero. (Yukihiro Nakadaira) Also clear ScreeenLinesC when allocating.
-
Bram Moolenaar authored
Problem: When built with small features the matching text is not highlighted for ":s/pat/repl/c". Solution: Remove the #ifdef for IncSearch. (James Vega)
-
Bram Moolenaar authored
Problem: Pointers for composing characters are not properly initialized. Solution: Compute the size of the pointer, not what it points to. (Yukihiro Nakadaira)
-
- Mar 19, 2010
-
-
Bram Moolenaar authored
Problem: Compiler warning for pointer type. (Tony Mechelynck) Solution: Move type cast to the right place.
-
- Mar 17, 2010
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: This gives a #705 error: let X = function('haslocaldir') let X = function('getcwd') Solution: Don't give E705 when the name is found in the hashtab. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: ":e dir<Tab>" with 'wildmode' set to "list" doesn't highlight directory names with a space. (Alexandre Provencio) Solution: Remove the backslash before checking if the name is a directory. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Dynamic Ruby is not initialised properly for version 1.9.1. Ruby cannot create strings from NULL. Solution: Cleanup #ifdefs. Handle NULL like an empty string. Add ruby_init_stack. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: Cannot compile on MingW Solution: Move ifneq to separate line. (Vlad Sandrini, Dominique Pelle)
-
Bram Moolenaar authored
Problem: When moving windows the cursor ends up in the wrong line. Solution: Set the window width and height properly. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Redundant check for w_lines_valid. Solution: Remove the if. (Lech Lorens)
-
Bram Moolenaar authored
Problem: Get E38 errors. (Dasn) Solution: Set cursor to line 1 instead of 0. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony Mechelynck) Solution: Don't escape ? for a help command. (Sergey Khorev)
-
- Mar 10, 2010
-
-
Bram Moolenaar authored
Problem: .xz files are not supported. Solution: Recognize .xz files so that they can be edited.
-
Bram Moolenaar authored
Problem: Mac: Can't build with different Xcode developer tools directory. Solution: make "Developer" directory name configurable. (Rainer Muller)
-
Bram Moolenaar authored
Problem: Netbeans hangs reading from a socket at the maximum block size. Solution: Use select() or poll(). (Xavier de Gaye)
-
Bram Moolenaar authored
Problem: Internal alloc(0) error when doing "CTRL-V $ c". (Martti Kuparinen) Solution: Fix computations in getvcol(). (partly by Lech Lorens)
-
Bram Moolenaar authored
Problem: In some situations the popup menu can be displayed wrong. Solution: Remove the popup menu if the cursor moved. (Lech Lorens)
-
Bram Moolenaar authored
Problem: synIDattr() cannot return the font. Solution: Support the "font" argument. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Ruby with MingW still doesn't build all versions. Solution: Different approach to build file. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: Ruby with MingW still doesn't build all versions. Solution: More #ifdefs for the Ruby code. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: Focus hack for KDE 3.1 causes problems for other window managers. Solution: Remove the hack. (forwarded by Joel Bradshaw)
-
- Mar 02, 2010
-
-
Bram Moolenaar authored
Problem: When in the command line window dragging status line only works for last-but-one window. (Jean Johner) Solution: Remove the code that disallows this.
-
Bram Moolenaar authored
Problem: Vim doesn't build properly with MSVC 2010. Solution: Add the nmake version to the build file. (George Reilly)
-
Bram Moolenaar authored
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly)
-
Bram Moolenaar authored
Problem: Accessing freed memory when closing the cmdline window when 'bufhide' is set to "wipe". Solution: Check if the buffer still exists before invoking close_buffer() (Dominique Pelle)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: No completion for :behave. Solution: Add :behave completion. Minor related fixes. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Perl interface builds with 5.10.1 but not with 5.10.0. Solution: Change the #ifdefs. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: 'eventignore' is set to an invalid value inside ":doau". (Antony Scriven) Solution: Don't include the leading comma when the option was empty.
-
Bram Moolenaar authored
Problem: C function declaration indented too much. (Rui) Solution: Don't see a line containing { or } as a type. (Matt Wozniski)
-
- Feb 26, 2010
-
-
Bram Moolenaar authored
Problem: Misplaced assignment. Duplicate build line for gvimext.dll. Solution: Move setting CROSS_COMPILE to before ifneq. Remove the wrong build line. (Markus Heidelberg)
-
- Feb 24, 2010
-
-
Bram Moolenaar authored
Problem: ml_get error when using SiSU syntax. (Nathan Thomas) Solution: If the match ends below the last line move it to the end of the last line.
-