summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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 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)
2014-03-08updated for version 7.4.193Bram Moolenaar
Problem: Typos in messages. Solution: "then" -> "than". (Dominique Pelle)
2014-02-24updated for version 7.4.192Bram Moolenaar
Problem: Memory leak when giving E853. Solution: Free the argument. (Dominique Pelle)
2014-02-23updated for version 7.4.191Bram Moolenaar
Problem: Escaping a file name for shell commands can't be done without a function. Solution: Add the :S file name modifier.
2014-02-23updated for version 7.4.190Bram Moolenaar
Problem: Compiler warning for using %lld for off_t. Solution: Add type cast.
2014-02-23updated for version 7.4.189Bram Moolenaar
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
2014-02-23updated for version 7.4.188Bram Moolenaar
Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
2014-02-22updated for version 7.4.187Bram Moolenaar
Problem: Delete that crosses line break splits multi-byte character. Solution: Advance a character instead of a byte. (Cade Foster)
2014-02-22updated for version 7.4.186Bram Moolenaar
Problem: Insert in Visual mode sometimes gives incorrect results. (Dominique Pelle) Solution: Remember the original insert start position. (Christian Brabandt, Dominique Pelle)
2014-02-22updated for version 7.4.185Bram Moolenaar
Problem: Clang gives warnings. Solution: Adjust how bigness is set. (Dominique Pelle)
2014-02-22updated for version 7.4.184Bram Moolenaar
Problem: match() does not work properly with a {count} argument. Solution: Compute the length once and update it. Quit the loop when at the end. (Hirohito Higashi)
2014-02-15updated for version 7.4.183Bram Moolenaar
Problem: MSVC Visual Studio update not supported. Solution: Add version number. (Mike William)
2014-02-15updated for version 7.4.182Bram Moolenaar
Problem: Building with mzscheme and racket does not work. (David Chimay) Solution: Adjust autoconf. (Sergey Khorev)
2014-02-15updated for version 7.4.181Bram Moolenaar
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel Ferencik, Jan Christoph Ebersbach) Solution: Update the status lines. (Nobuhiro Takasaki)
2014-02-15updated for version 7.4.180Bram Moolenaar
Problem: Older Python versions don't support %ld. Solution: Use %d instead. (ZyX)
2014-02-12updated for version 7.4.179Bram Moolenaar
Problem: Warning for type-punned pointer. (Tony Mechelynck) Solution: Use intermediate variable.
2014-02-11updated for version 7.4.178Bram Moolenaar
Problem: The J command does not update '[ and '] marks. (William Gardner) Solution: Set the marks. (Christian Brabandt)
2014-02-11updated for version 7.4.177Bram Moolenaar
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Add #ifdef.
2014-02-11updated for version 7.4.176Bram Moolenaar
Problem: Dictionary.update() thows an error when used without arguments. Python programmers don't expect that. Solution: Make Dictionary.update() without arguments do nothing. (ZyX)
2014-02-11updated for version 7.4.175Bram Moolenaar
Problem: When a wide library function fails, falling back to the non-wide function may do the wrong thing. Solution: Check the platform, when the wide function is supported don't fall back to the non-wide function. (Ken Takata)
2014-02-11updated for version 7.4.174Bram Moolenaar
Problem: Compiler warnings for Python interface. (Tony Mechelynck) Solution: Add type casts, initialize variable.
2014-02-11updated for version 7.4.173Bram Moolenaar
Problem: When using scrollbind the cursor can end up below the last line. (mvxxc) Solution: Reset w_botfill when scrolling up. (Christian Brabandt)
2014-02-11updated for version 7.4.172Bram Moolenaar
Problem: The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments.
2014-02-11updated for version 7.4.171Bram Moolenaar
Problem: Redo does not set v:count and v:count1. Solution: Use a separate buffer for redo, so that we can set the counts when performing redo.
2014-02-11updated for version 7.4.170Bram Moolenaar
Problem: Some help tags don't work with ":help". (Tim Chase) Solution: Add exceptions.
2014-02-05updated for version 7.4.169Bram Moolenaar
Problem: ":sleep" puts cursor in the wrong column. (Liang Li) Solution: Add the window offset. (Christian Brabandt)
2014-02-05updated for version 7.4.168Bram Moolenaar
Problem: Can't compile with Ruby 2.1.0. Solution: Add support for new GC. (Kohei Suzuki)