- Sep 22, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: NFA engine does not match the NUL character. (Jonathon Merz) Solution: Ues 0x0a instead of NUL. (Christian Brabandt)
-
- Sep 20, 2013
-
-
Bram Moolenaar authored
Problem: ":diffoff!" resets options even when 'diff' is not set. (Charles Cooper) Solution: Only resets related options in a window where 'diff' is set.
-
- Sep 19, 2013
-
-
Bram Moolenaar authored
Problem: The -mno-cygwin argument is no longer supported by Cygwin. Solution: Remove the arguments. (Steve Hall)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: An error in a pattern is reported twice. Solution: Remove the retry with the backtracking engine, it won't work.
-
Bram Moolenaar authored
Problem: Equivalence classes are not working for multi-byte characters. Solution: Copy the rules from the old to the new regexp engine. Add a test to check both engines.
-
- Sep 08, 2013
-
-
Bram Moolenaar authored
Problem: Another valgrind error when using CTRL-X CTRL-F at the start of the line. (Dominique Pelle) Solution: Don't call mb_ptr_back() at the start of the line. Add a test.
-
Bram Moolenaar authored
Problem: Clang warning for int shift overflow. Solution: Use unsigned and cast back to int. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: Reading before start of a string. Solution: Do not call mb_ptr_back() at start of a string. (Dominique Pelle)
-
Bram Moolenaar authored
Problem: When root edits a file the undo file is owned by root while the edited file may be owned by another user, which is not allowed. (cac2s) Solution: Accept an undo file owned by the current user.
-
- Sep 07, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
-
- Sep 05, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Deadlock while exiting, because of allocating memory. Solution: Do not use gettext() in deathtrap(). (James McCoy)
-
Bram Moolenaar authored
Problem: NFA regexp: Using \ze in one branch which doesn't match may cause end of another branch to be wrong. (William Fugh) Solution: Set end position if it wasn't set yet.
-
Bram Moolenaar authored
Problem: NFA engine matches too much with \@>. (John McGowan) Solution: When a whole pattern match is found stop searching.
-
Bram Moolenaar authored
Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Take care of multi-byte characters when looking for the start of the file name. (Ken Takata)
-
Bram Moolenaar authored
Problem: When completing item becomes unselected. (Shougo Matsu) Solution: Revert patch 7.3.1269.
-
Bram Moolenaar authored
Problem: ":help !!" does not find the "!!" tag in the help file. (Ben Fritz) Solution: When reading the start of the tags file do parse lines that are not header lines.
-
- Aug 30, 2013
-
-
Bram Moolenaar authored
Problem: MS-Windows: File name completion doesn't work properly with Chinese characters. (Yue Wu) Solution: Add fname_casew(). (Ken Takata)
-
Bram Moolenaar authored
Problem: MS-Windows: Detecting node type does not work for multi-byte characters. Solution: Use wide character function when needed. (Ken Takata)
-
Bram Moolenaar authored
Problem: MS-Windows: check for writing to device does not work. Solution: Fix #ifdefs. (Ken Takata)
-
Bram Moolenaar authored
Problem: File name buffer too small for utf-8. Solution: Use character count instead of byte count. (Ken Takata)
-
Bram Moolenaar authored
Problem: MS-Windows: resolving shortcut does not work properly with multi-byte characters. Solution: Use wide system functions. (Ken Takata)
-
Bram Moolenaar authored
Problem: Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
-
Bram Moolenaar authored
Problem: Crash with invalid argument to mkdir(). Solution: Check for empty string. (lcd47)
-
- Aug 25, 2013
-
-
Bram Moolenaar authored
Problem: When a file was not decrypted (yet), writing it may destroy the contents. Solution: Mark the file as readonly until decryption was done. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: New regexp engine can't be interrupted. Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto)
-
- Aug 22, 2013
-
-
Bram Moolenaar authored
Problem: Creating a preview window on startup leaves the screen layout in a messed up state. (Marius Gedminas) Solution: Don't change firstwin. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) Solution: Remove the trailing slash. (lcd)
-
- Aug 14, 2013
-
-
Bram Moolenaar authored
Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. (Dimitar Dimitrov) Solution: Reset coladd when finding a match.
-
Bram Moolenaar authored
Problem: When closing a window fails ":bwipe" may hang. Solution: Let win_close() return FAIL and break out of the loop.
-
Bram Moolenaar authored
Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) Solution: Refresh stale pointer. (James McCoy)
-
Bram Moolenaar authored
Problem: Pattern with two alternative look-behind matches does not match. (Amadeus Demarzi) Solution: When comparing PIMs also compare their state ID to see if they are different.
-
Bram Moolenaar authored
Problem: Character classes such as [a-z] to not react to 'ignorecase'. Breaks man page highlighting. (Mario Grgic) Solution: Add separate items for classes that react to 'ignorecase'. Clean up logic handling character classes. Add more tests.
-
- Aug 10, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Not waiting for a character when the tick count overflows. Solution: Subtract the unsigned numbers and cast to int. (Ken Takata)
-
- Aug 09, 2013
-
-
Bram Moolenaar authored
Problem: Pressing "u" after an external command results in multiple press-enter messages. (glts) Solution: Don't call hit_return_msg() when we have K_IGNORE. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega) Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams)
-
- Aug 07, 2013
-
-
Bram Moolenaar authored
Problem: Tabline is not updated properly when closing a tab on Win32. Solution: Only reduce flickering when adding a tab. (Ken Takata)
-