- 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)
-
Bram Moolenaar authored
Problem: Win32: Dialog can still be too big. Solution: Move the check for height further down. (Andrei Olsen)
-
Bram Moolenaar authored
Problem: ":he \^x" gives a strange error message. (glts) Solution: Do not translate \^x to \_CTRL-x.
-
Bram Moolenaar authored
Problem: Ruby detection fails on Fedora 19. Solution: Use one way to get the Ruby version. (Michael Henry)
-
- Aug 05, 2013
-
-
Bram Moolenaar authored
Problem: Can't compile without the 'acd' feature. Solution: Add #ifdefs. (Kazunobu Kuriyama)
-
- Aug 03, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Stupid mistake. Solution: Changle "len" to "i".
-
Bram Moolenaar authored
Problem: Install dir for JP man pages is wrong. Solution: Remove ".UTF-8" from the directory name. (Ken Takata)
-
Bram Moolenaar authored
Problem: Output from a shell command is truncated at a NUL. (lcd 47) Solution: Change every NUL into an SOH.
-
Bram Moolenaar authored
Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list.
-
- Aug 02, 2013
-
-
Bram Moolenaar authored
Problem: Win32: Tcl library load does not use standard mechanism. Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
-
Bram Moolenaar authored
Problem: When setting the Visual area manually and 'selection' is exclusive, a yank includes one character too much. (Ingo Karkat) Solution: Default the Visual operation to "v". (Christian Brabandt)
-
Bram Moolenaar authored
Problem: 'autochdir' causes setbufvar() to change the current directory. (Ben Fritz) Solution: When disabling autocommands also reset 'acd' temporarily. (Christian Brabandt)
-