- Mar 19, 2014
-
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Compiler warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
-
- Mar 12, 2014
-
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: A mapping where the second byte is 0x80 doesn't work. Solution: Unescape before checking for incomplete multi-byte char. (Nobuhiro Takasaki)
-
Bram Moolenaar authored
Problem: Parsing 'errorformat' is not correct. Solution: Reset "multiignore" at the start of a multi-line message. (Lcd)
-
Bram Moolenaar authored
Problem: MS-Windows: non-ASCII font names don't work. Solution: Convert between the current code page and 'encoding'. (Ken Takata)
-
Bram Moolenaar authored
Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
-
Bram Moolenaar authored
Problem: Too many #ifdefs in the code. Solution: Enable FEAT_VISUAL always, await any complaints
-
Bram Moolenaar authored
Problem: (issue 197) ]P doesn't paste over Visual selection. Solution: Handle Visual mode specifically. (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Various problems on VMS. Solution: Fix several VMS problems. (Zoltan Arpadffy)
-
Bram Moolenaar authored
Problem: Tests fail on Solaris 9 and 10. Solution: Use "test -f" instead of "test -e". (Laurent Blume)
-
Bram Moolenaar authored
Problem: Python tests fail. Solution: Change "then" to "than" in more places. (Dominique Pelle, Taro Muraoka)
-
Bram Moolenaar authored
Problem: Can't build for Android. Solution: Add #if condition. (Fredrik Fornwall)
-
- Mar 08, 2014
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Typos in messages. Solution: "then" -> "than". (Dominique Pelle)
-
- Feb 24, 2014
-
-
Bram Moolenaar authored
Problem: Memory leak when giving E853. Solution: Free the argument. (Dominique Pelle)
-
Bram Moolenaar authored
-
- Feb 23, 2014
-
-
Bram Moolenaar authored
Problem: Escaping a file name for shell commands can't be done without a function. Solution: Add the :S file name modifier.
-
Bram Moolenaar authored
Problem: Compiler warning for using %lld for off_t. Solution: Add type cast.
-
Bram Moolenaar authored
Problem: Compiler warning for unused argument. Solution: Add UNUSED.
-
Bram Moolenaar authored
Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
-
- Feb 22, 2014
-
-
Bram Moolenaar authored
Problem: Delete that crosses line break splits multi-byte character. Solution: Advance a character instead of a byte. (Cade Foster)
-
Bram Moolenaar authored
Problem: Insert in Visual mode sometimes gives incorrect results. (Dominique Pelle) Solution: Remember the original insert start position. (Christian Brabandt, Dominique Pelle)
-
Bram Moolenaar authored
Problem: Clang gives warnings. Solution: Adjust how bigness is set. (Dominique Pelle)
-
Bram Moolenaar authored
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)
-
- Feb 15, 2014
-
-
Bram Moolenaar authored
Problem: MSVC Visual Studio update not supported. Solution: Add version number. (Mike William)
-
Bram Moolenaar authored
Problem: Building with mzscheme and racket does not work. (David Chimay) Solution: Adjust autoconf. (Sergey Khorev)
-
Bram Moolenaar authored
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel Ferencik, Jan Christoph Ebersbach) Solution: Update the status lines. (Nobuhiro Takasaki)
-
Bram Moolenaar authored
Problem: Older Python versions don't support %ld. Solution: Use %d instead. (ZyX)
-
- Feb 12, 2014
-
-
Bram Moolenaar authored
Problem: Warning for type-punned pointer. (Tony Mechelynck) Solution: Use intermediate variable.
-
- Feb 11, 2014
-
-
Bram Moolenaar authored
Problem: The J command does not update '[ and '] marks. (William Gardner) Solution: Set the marks. (Christian Brabandt)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Add #ifdef.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warnings for Python interface. (Tony Mechelynck) Solution: Add type casts, initialize variable.
-
Bram Moolenaar authored
Problem: When using scrollbind the cursor can end up below the last line. (mvxxc) Solution: Reset w_botfill when scrolling up. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The blowfish code mentions output feedback, but the code is actually doing cipher feedback. Solution: Adjust names and comments.
-
Bram Moolenaar authored
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.
-