summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-02updated for version 7.4.241Bram Moolenaar
Problem: The string returned by submatch() does not distinguish between a NL from a line break and a NL that stands for a NUL character. Solution: Add a second argument to return a list. (ZyX)
2014-04-02updated for version 7.4.240Bram Moolenaar
Problem: ":tjump" shows "\n" as "\\n". Solution: Skip over "\" that escapes a backslash. (Gary Johnson)
2014-04-02updated for version 7.4.239Bram Moolenaar
Problem: ":e +" does not position cursor at end of the file. Solution: Check for "+" being the last character (ZyX)
2014-04-02updated for version 7.4.238Bram Moolenaar
Problem: Vim does not support the smack library. Solution: Add smack support (Jose Bollo)
2014-04-02updated for version 7.4.237Bram Moolenaar
Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
2014-04-01updated for version 7.4.236Bram Moolenaar
Problem: It's not that easy to check the Vim patch version. Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
2014-04-01updated for version 7.4.235Bram Moolenaar
Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function.
2014-04-01updated for version 7.4.234Bram Moolenaar
Problem: Can't get the command that was used to start Vim. Solution: Add v:progpath. (Viktor Kojouharov)
2014-04-01updated for version 7.4.233Bram Moolenaar
Problem: Escaping special characters for using "%" with a shell command is inconsistant, parenthesis are escaped but spaces are not. Solution: Only escape "!". (Gary Johnson)
2014-04-01updated for version 7.4.232Bram Moolenaar
Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) Solution: Turn this into a join command. (Christian Brabandt)
2014-04-01updated for version 7.4.231Bram Moolenaar
Problem: An error in ":options" is not caught by the tests. Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that it uses the current runtime files instead of the installed ones.
2014-04-01updated for version 7.4.230Bram Moolenaar
Problem: Error when using ":options". Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
2014-03-30updated for version 7.4.229Bram Moolenaar
Problem: Using ":let" for listing variables and the second one is a curly braces expression may fail. Solution: Check for an "=" in a better way. (ZyX)
2014-03-30updated for version 7.4.228Bram Moolenaar
Problem: Compiler warnings when building with Python 3.2. Solution: Make type cast depend on Python version. (Ken Takata)
2014-03-28updated for version 7.4.227Bram Moolenaar
Problem: Can't build with Ruby 1.8. Solution: Do include a check for the Ruby version. (Ken Takata)
2014-03-28updated for version 7.4.226Bram Moolenaar
Problem: Cursurline highlighting not redrawn when scrolling. (John Marriott) Solution: Check for required redraw in two places.
2014-03-27Update runtime files.Bram Moolenaar
2014-03-27updated for version 7.4.225Bram Moolenaar
Problem: Dynamic Ruby doesn't work on Solaris. Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira)
2014-03-27updated for version 7.4.224Bram Moolenaar
Problem: /usr/bin/grep on Solaris does not support -F. Solution: Add configure check to find a good grep. (Danek Duvall)
2014-03-27updated for version 7.4.223Bram Moolenaar
Problem: Still using an older autoconf version. Solution: Switch to autoconf 2.69.
2014-03-27updated for version 7.4.222Bram Moolenaar
Problem: The Ruby directory is constructed from parts. Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy)
2014-03-27updated for version 7.4.221Bram Moolenaar
Problem: Quickfix doesn't resize on ":copen 20". (issue 199) Solution: Resize the window when requested. (Christian Brabandt)
2014-03-27updated for version 7.4.220Bram Moolenaar
Problem: Test 105 does not work in a shadow dir. (James McCoy) Solution: Omit "src/" from the checked path.
2014-03-27updated for version 7.4.219Bram Moolenaar
Problem: When 'relativenumber' or 'cursorline' are set the window is redrawn much to often. (Patrick Hemmer, Dominique Pelle) Solution: Check the VALID_CROW flag instead of VALID_WROW.
2014-03-25updated for version 7.4.218Bram Moolenaar
Problem: It's not easy to remove duplicates from a list. Solution: Add the uniq() function. (LCD)
2014-03-25updated for version 7.4.217Bram Moolenaar
Problem: When src/auto/configure was updated, "make clean" would run configure pointlessly. Solution: Do not run configure for "make clean" and "make distclean" when the make program supports $MAKECMDGOALS. (Ken Takata)
2014-03-25updated for version 7.4.216Bram Moolenaar
Problem: Compiler warnings. (Tony Mechelynck) Solution: Initialize variables, add #ifdef.
2014-03-25updated for version 7.4.215Bram Moolenaar
Problem: Inconsistency: ":sp foo" does not reload "foo", unless "foo" is the current buffer. (Liang Li) Solution: Do not reload the current buffer on a split command.
2014-03-24updated for version 7.4.214Bram Moolenaar
Problem: Compilation problems on HP_nonStop (Tandem). Solution: Add #defines. (Joachim Schmitz)
2014-03-23updated for version 7.4.213Bram Moolenaar
Problem: It's not possible to open a new buffer without creating a swap file. Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
2014-03-23updated for version 7.4.212Bram Moolenaar
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
2014-03-22Updated runtime files.Bram Moolenaar
2014-03-22updated for version 7.4.211Bram Moolenaar
Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap". (ZyX) Solution: Move "lunmap" to above "lua".
2014-03-19updated for version 7.4.210Bram Moolenaar
Problem: Visual block mode plus virtual edit doesn't work well with tabs. (Liang Li) Solution: Take coladd into account. (Christian Brabandt)
2014-03-19updated for version 7.4.209Bram Moolenaar
Problem: When repeating a filter command "%" and "#" are expanded. Solution: Escape the command when storing for redo. (Christian Brabandt)
2014-03-19updated for version 7.4.208Bram Moolenaar
Problem: Mercurial picks up some files that are not distributed. Solution: Add patterns to the ignore list. (Cade Forester)
2014-03-19updated for version 7.4.207Bram Moolenaar
Problem: The cursor report sequence is sometimes not recognized and results in entering replace mode. Solution: Also check for the cursor report when not asked for.
2014-03-19updated for version 7.4.206Bram Moolenaar
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
2014-03-12updated for version 7.4.205Bram Moolenaar
Problem: ":mksession" writes command to move to second argument while it does not exist. When it does exist the order might be wrong. Solution: Use ":argadd" for each argument instead of using ":args" with a list of names. (Nobuhiro Takasaki)
2014-03-12updated for version 7.4.204Bram Moolenaar
Problem: A mapping where the second byte is 0x80 doesn't work. Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro Takasaki)
2014-03-12updated for version 7.4.203Bram Moolenaar
Problem: Parsing 'errorformat' is not correct. Solution: Reset "multiignore" at the start of a multi-line message. (Lcd)
2014-03-12updated for version 7.4.202Bram Moolenaar
Problem: MS-Windows: non-ASCII font names don't work. Solution: Convert between the current code page and 'encoding'. (Ken Takata)
2014-03-12updated for version 7.4.201Bram Moolenaar
Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
2014-03-12updated for version 7.4.200Bram Moolenaar
Problem: Too many #ifdefs in the code. Solution: Enable FEAT_VISUAL always, await any complaints
2014-03-12updated for version 7.4.199Bram Moolenaar
Problem: (issue 197) ]P doesn't paste over Visual selection. Solution: Handle Visual mode specifically. (Christian Brabandt)
2014-03-12updated for version 7.4.198Bram Moolenaar
Problem: Can't build Vim with Perl when -Dusethreads is not specified for building Perl, and building Vim with --enable-perlinterp=dynamic. Solution: Adjust #ifdefs. (Yasuhiro Matsumoto)
2014-03-12updated for version 7.4.197Bram Moolenaar
Problem: Various problems on VMS. Solution: Fix several VMS problems. (Zoltan Arpadffy)
2014-03-12updated for version 7.4.196Bram Moolenaar
Problem: Tests fail on Solaris 9 and 10. Solution: Use "test -f" instead of "test -e". (Laurent Blume)
2014-03-12updated for version 7.4.195Bram Moolenaar
Problem: Python tests fail. Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro Muraoka)
2014-03-12updated for version 7.4.194Bram Moolenaar
Problem: Can't build for Android. Solution: Add #if condition. (Fredrik Fornwall)