- Apr 04, 2014
-
-
Bram Moolenaar authored
Problem: Crash for "vim -u NONE -N -c '&&'". Solution: Check for the pattern to be NULL. (Dominique Pelle)
-
- Apr 02, 2014
-
-
Bram Moolenaar authored
Problem: The smack feature causes stray error messages. Solution: Remove the error messages.
-
Bram Moolenaar authored
Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list.
-
Bram Moolenaar authored
Problem: getreg() does not distinguish between a NL used for a line break and a NL used for a NUL character. Solution: Add another argument to return a list. (ZyX)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: ":tjump" shows "\n" as "\\n". Solution: Skip over "\" that escapes a backslash. (Gary Johnson)
-
Bram Moolenaar authored
Problem: ":e +" does not position cursor at end of the file. Solution: Check for "+" being the last character (ZyX)
-
Bram Moolenaar authored
Problem: Vim does not support the smack library. Solution: Add smack support (Jose Bollo)
-
Bram Moolenaar authored
Problem: When some patches was not included has("patch-7.4.123") may return true falsely. Solution: Check for the specific patch number.
-
- Apr 01, 2014
-
-
Bram Moolenaar authored
Problem: It's not that easy to check the Vim patch version. Solution: Make has("patch-7.4.123") work. (partly by Marc Weber)
-
Bram Moolenaar authored
Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function.
-
Bram Moolenaar authored
Problem: Can't get the command that was used to start Vim. Solution: Add v:progpath. (Viktor Kojouharov)
-
Bram Moolenaar authored
Problem: Escaping special characters for using "%" with a shell command is inconsistant, parenthesis are escaped but spaces are not. Solution: Only escape "!". (Gary Johnson)
-
Bram Moolenaar authored
Problem: ":%s/\n//" uses a lot of memory. (Aidan Marlin) Solution: Turn this into a join command. (Christian Brabandt)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Error when using ":options". Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
-
- Mar 30, 2014
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warnings when building with Python 3.2. Solution: Make type cast depend on Python version. (Ken Takata)
-
- Mar 28, 2014
-
-
Bram Moolenaar authored
Problem: Can't build with Ruby 1.8. Solution: Do include a check for the Ruby version. (Ken Takata)
-
Bram Moolenaar authored
Problem: Cursurline highlighting not redrawn when scrolling. (John Marriott) Solution: Check for required redraw in two places.
-
- Mar 27, 2014
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Dynamic Ruby doesn't work on Solaris. Solution: Always use the stubs. (Danek Duvall, Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: /usr/bin/grep on Solaris does not support -F. Solution: Add configure check to find a good grep. (Danek Duvall)
-
Bram Moolenaar authored
Problem: Still using an older autoconf version. Solution: Switch to autoconf 2.69.
-
Bram Moolenaar authored
Problem: The Ruby directory is constructed from parts. Solution: Use 'rubyarchhdrdir' if it exists. (James McCoy)
-
Bram Moolenaar authored
Problem: Quickfix doesn't resize on ":copen 20". (issue 199) Solution: Resize the window when requested. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Test 105 does not work in a shadow dir. (James McCoy) Solution: Omit "src/" from the checked path.
-
Bram Moolenaar authored
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.
-
- Mar 25, 2014
-
-
Bram Moolenaar authored
Problem: It's not easy to remove duplicates from a list. Solution: Add the uniq() function. (LCD)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warnings. (Tony Mechelynck) Solution: Initialize variables, add #ifdef.
-
Bram Moolenaar authored
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.
-
- Mar 24, 2014
-
-
Bram Moolenaar authored
Problem: Compilation problems on HP_nonStop (Tandem). Solution: Add #defines. (Joachim Schmitz)
-
- Mar 23, 2014
-
-
Bram Moolenaar authored
Problem: It's not possible to open a new buffer without creating a swap file. Solution: Add the ":noswapfile" modifier. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
-
- Mar 22, 2014
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: ":lu" is an abbreviation for ":lua", but it should be ":lunmap". (ZyX) Solution: Move "lunmap" to above "lua".
-
- Mar 19, 2014
-
-
Bram Moolenaar authored
Problem: Visual block mode plus virtual edit doesn't work well with tabs. (Liang Li) Solution: Take coladd into account. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: When repeating a filter command "%" and "#" are expanded. Solution: Escape the command when storing for redo. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Mercurial picks up some files that are not distributed. Solution: Add patterns to the ignore list. (Cade Forester)
-