- Aug 30, 2013
-
-
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)
-
Bram Moolenaar authored
Problem: On 32 bit MS-Windows :perldo does not work. Solution: Make sure time_t uses 32 bits. (Ken Takata)
-
Bram Moolenaar authored
Problem: Using \{n,m} in an autocommand pattern no longer works. Specifically, mutt temp files are not recognized. (Gary Johnson) Solution: Make \\\{n,m\} work.
-
Bram Moolenaar authored
Problem: Finding %s in shellpipe and shellredir does not ignore %%s. Solution: Skip over %%. (lcd 47)
-
- Aug 01, 2013
-
-
Bram Moolenaar authored
Problem: Regexp crash on pattern "@\%[\w\-]*". (Axel Kielhorn) Solution: Add \%(\) around \%[] internally.
-
Bram Moolenaar authored
Problem: Regexp code is not nicely aligned. Solution: Adjust white space. (Ken Takata)
-
Bram Moolenaar authored
Problem: Crash searching for \%(\%(\|\d\|-\|\.\)*\|\*\). (Marcin Szamotulski) Also for \(\)*. Solution: Do add a state for opening parenthesis, so that we can check if it was added before at the same position.
-
Bram Moolenaar authored
Problem: Win32: dialog may extend off-screen. Solution: Reduce the size, use correct borders. (Andrei Olsen)
-
- Jul 28, 2013
-
-
Bram Moolenaar authored
-