summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2010-05-07updated for version 7.2.413v7.2.413Bram Moolenaar
Problem: Large file support is incorrect. Solution: Add AC_SYS_LARGEFILE to configure. (James Vega)
2010-05-07updated for version 7.2.412v7.2.412Bram Moolenaar
Problem: [ or ] followed by mouse click doesn't work. Solution: Reverse check for key being a mouse event. (Dominique Pelle)
2010-03-23updated for version 7.2.411v7.2.411Bram Moolenaar
Problem: When parsing 'cino' a comma isn't skipped properly. Solution: Skip the comma. (Lech Lorens)
2010-03-23updated for version 7.2.410v7.2.410Bram Moolenaar
Problem: Highlighting directories for completion doesn't work properly. Solution: Don't halve backslashes when not needed, expaned "~/". (Dominique Pelle)
2010-03-23updated for version 7.2.409v7.2.409Bram Moolenaar
Problem: Summary of number of substitutes is incorrect for ":folddo". (Jean Johner) Solution: Reset sub_nsubs and sub_nlines in global_exe().
2010-03-23updated for version 7.2.408v7.2.408Bram Moolenaar
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.
2010-03-23updated for version 7.2.407v7.2.407Bram Moolenaar
Problem: When using an expression in ":s" backslashes in the result are dropped. (Sergey Goldgaber, Christian Brabandt) Solution: Double backslashes.
2010-03-23updated for version 7.2.406v7.2.406Bram Moolenaar
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.
2010-03-23updated for version 7.2.405v7.2.405Bram Moolenaar
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)
2010-03-23updated for version 7.2.404v7.2.404Bram Moolenaar
Problem: Pointers for composing characters are not properly initialized. Solution: Compute the size of the pointer, not what it points to. (Yukihiro Nakadaira)
2010-03-19updated for version 7.2.403v7.2.403Bram Moolenaar
Problem: Compiler warning for pointer type. (Tony Mechelynck) Solution: Move type cast to the right place.
2010-03-17Updated runtime and language files.Bram Moolenaar
2010-03-17updated for version 7.2.402v7.2.402Bram Moolenaar
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)
2010-03-17updated for version 7.2.401v7.2.401Bram Moolenaar
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)
2010-03-17updated for version 7.2.400v7.2.400Bram Moolenaar
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)
2010-03-17updated for version 7.2.399v7.2.399Bram Moolenaar
Problem: Cannot compile on MingW Solution: Move ifneq to separate line. (Vlad Sandrini, Dominique Pelle)
2010-03-17updated for version 7.2.398v7.2.398Bram Moolenaar
Problem: When moving windows the cursor ends up in the wrong line. Solution: Set the window width and height properly. (Lech Lorens)
2010-03-17updated for version 7.2.397v7.2.397Bram Moolenaar
Problem: Redundant check for w_lines_valid. Solution: Remove the if. (Lech Lorens)
2010-03-17updated for version 7.2.396v7.2.396Bram Moolenaar
Problem: Get E38 errors. (Dasn) Solution: Set cursor to line 1 instead of 0. (Dominique Pelle)
2010-03-17updated for version 7.2.395v7.2.395Bram Moolenaar
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)
2010-03-10updated for version 7.2.394v7.2.394Bram Moolenaar
Problem: .xz files are not supported. Solution: Recognize .xz files so that they can be edited.
2010-03-10updated for version 7.2.393v7.2.393Bram Moolenaar
Problem: Mac: Can't build with different Xcode developer tools directory. Solution: make "Developer" directory name configurable. (Rainer Muller)
2010-03-10updated for version 7.2.392v7.2.392Bram Moolenaar
Problem: Netbeans hangs reading from a socket at the maximum block size. Solution: Use select() or poll(). (Xavier de Gaye)
2010-03-10updated for version 7.2.391v7.2.391Bram Moolenaar
Problem: Internal alloc(0) error when doing "CTRL-V $ c". (Martti Kuparinen) Solution: Fix computations in getvcol(). (partly by Lech Lorens)
2010-03-10updated for version 7.2.390v7.2.390Bram Moolenaar
Problem: In some situations the popup menu can be displayed wrong. Solution: Remove the popup menu if the cursor moved. (Lech Lorens)
2010-03-10updated for version 7.2.389v7.2.389Bram Moolenaar
Problem: synIDattr() cannot return the font. Solution: Support the "font" argument. (Christian Brabandt)
2010-03-10updated for version 7.2.388v7.2.388Bram Moolenaar
Problem: Ruby with MingW still doesn't build all versions. Solution: Different approach to build file. (Sergey Khorev)
2010-03-10updated for version 7.2.387v7.2.387Bram Moolenaar
Problem: Ruby with MingW still doesn't build all versions. Solution: More #ifdefs for the Ruby code. (Sergey Khorev)
2010-03-10updated for version 7.2.386v7.2.386Bram Moolenaar
Problem: Focus hack for KDE 3.1 causes problems for other window managers. Solution: Remove the hack. (forwarded by Joel Bradshaw)
2010-03-02updated for version 7.2.385v7.2.385Bram Moolenaar
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.
2010-03-02updated for version 7.2.384v7.2.384Bram Moolenaar
Problem: Vim doesn't build properly with MSVC 2010. Solution: Add the nmake version to the build file. (George Reilly)
2010-03-02updated for version 7.2.383v7.2.383Bram Moolenaar
Problem: Vim doesn't build cleanly with MSVC 2010. Solution: Change a few types. (George Reilly)
2010-03-02updated for version 7.2.382v7.2.382Bram Moolenaar
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)
2010-03-02Updated runtime an documentation files.Bram Moolenaar
2010-03-02updated for version 7.2.381v7.2.381Bram Moolenaar
Problem: No completion for :behave. Solution: Add :behave completion. Minor related fixes. (Dominique Pelle)
2010-03-02updated for version 7.2.380v7.2.380Bram Moolenaar
Problem: Perl interface builds with 5.10.1 but not with 5.10.0. Solution: Change the #ifdefs. (Sergey Khorev)
2010-03-02updated for version 7.2.379v7.2.379Bram Moolenaar
Problem: 'eventignore' is set to an invalid value inside ":doau". (Antony Scriven) Solution: Don't include the leading comma when the option was empty.
2010-03-02updated for version 7.2.378v7.2.378Bram Moolenaar
Problem: C function declaration indented too much. (Rui) Solution: Don't see a line containing { or } as a type. (Matt Wozniski)
2010-02-26updated for version 7.2.377v7.2.377Bram Moolenaar
Problem: Misplaced assignment. Duplicate build line for gvimext.dll. Solution: Move setting CROSS_COMPILE to before ifneq. Remove the wrong build line. (Markus Heidelberg)
2010-02-24updated for version 7.2.376v7.2.376Bram Moolenaar
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.
2010-02-24updated for version 7.2.375v7.2.375Bram Moolenaar
Problem: ml_get errors when using ":bprevious" in a BufEnter autocmd. (Dominique Pelle) Solution: Clear w_valid when entering another buffer.
2010-02-24updated for version 7.2.374v7.2.374Bram Moolenaar
Problem: Ruby eval() doesn't understand Vim types. Solution: Add the vim_to_ruby() function. (George Gensure)
2010-02-24updated for version 7.2.373v7.2.373Bram Moolenaar
Problem: Gcc 4.5 adds more error messages. (Chris Indy) Solution: Update default 'errorformat'.
2010-02-24updated for version 7.2.372v7.2.372Bram Moolenaar
Problem: Cross-compiling GvimExt and xxd doesn't work. Solution: Change the build files. (Markus Heidelberg)
2010-02-24updated for version 7.2.371v7.2.371Bram Moolenaar
Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
2010-02-24updated for version 7.2.370v7.2.370Bram Moolenaar
Problem: A redraw may cause folds to be closed. Solution: Revert part of the previous patch. Add a test. (Lech Lorens)
2010-02-24updated for version 7.2.369v7.2.369Bram Moolenaar
Problem: Error message is not easy to understand. Solution: Add quotes. (SungHyun Nam)
2010-02-18updated for version 7.2.368v7.2.368Bram Moolenaar
Problem: Ruby interface: Appending line doesn't work. (Michael Henry) Solution: Reverse check for NULL line. (James Vega)
2010-02-17updated for version 7.2.367v7.2.367Bram Moolenaar
Problem: "xxd -r -p" doesn't work as documented. Solution: Skip white space. (James Vega)
2010-02-17updated for version 7.2.366v7.2.366Bram Moolenaar
Problem: CTRL-B doesn't go back to the first line of the buffer. Solution: Avoid an overflow when adding MAXCOL.