summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-30updated for version 7.4.012Bram Moolenaar
Problem: MS-Windows: resolving shortcut does not work properly with multi-byte characters. Solution: Use wide system functions. (Ken Takata)
2013-08-30updated for version 7.4.011Bram Moolenaar
Problem: Cannot find out if "acl" and "xpm" features are supported. Solution: Add "acl" and "xpm" to the list of features. (Ken Takata)
2013-08-30updated for version 7.4.010Bram Moolenaar
Problem: Crash with invalid argument to mkdir(). Solution: Check for empty string. (lcd47)
2013-08-25updated for version 7.4.009Bram Moolenaar
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)
2013-08-25updated for version 7.4.008Bram Moolenaar
Problem: New regexp engine can't be interrupted. Solution: Check for CTRL-C pressed. (Yasuhiro Matsumoto)
2013-08-22updated for version 7.4.007Bram Moolenaar
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)
2013-08-22updated for version 7.4.006Bram Moolenaar
Problem: mkdir("foo/bar/", "p") gives an error message. (David Barnett) Solution: Remove the trailing slash. (lcd)
2013-08-14updated for version 7.4.005Bram Moolenaar
Problem: Using "vaB" while 'virtualedit' is set selects the wrong area. (Dimitar Dimitrov) Solution: Reset coladd when finding a match.
2013-08-14updated for version 7.4.004Bram Moolenaar
Problem: When closing a window fails ":bwipe" may hang. Solution: Let win_close() return FAIL and break out of the loop.
2013-08-14updated for version 7.4.003Bram Moolenaar
Problem: Memory access error in Ruby syntax highlighting. (Christopher Chow) Solution: Refresh stale pointer. (James McCoy)
2013-08-14updated for version 7.4.002Bram Moolenaar
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.
2013-08-14updated for version 7.4.001Bram Moolenaar
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.
2013-08-10release version 7.4Bram Moolenaar
2013-08-10updated for version 7.4b.022Bram Moolenaar
Problem: Not waiting for a character when the tick count overflows. Solution: Subtract the unsigned numbers and cast to int. (Ken Takata)
2013-08-09updated for version 7.4b.021Bram Moolenaar
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)
2013-08-09updated for version 7.4b.020Bram Moolenaar
Problem: "g~ap" changes first character of next paragraph. (Manuel Ortega) Solution: Avoid subtracting (0 - 1) from todo. (Mike Williams)
2013-08-07updated for version 7.4b.019Bram Moolenaar
Problem: Tabline is not updated properly when closing a tab on Win32. Solution: Only reduce flickering when adding a tab. (Ken Takata)
2013-08-07updated for version 7.4b.018Bram Moolenaar
Problem: Win32: Dialog can still be too big. Solution: Move the check for height further down. (Andrei Olsen)
2013-08-07updated for version 7.4b.017Bram Moolenaar
Problem: ":he \^x" gives a strange error message. (glts) Solution: Do not translate \^x to \_CTRL-x.
2013-08-07updated for version 7.4b.016Bram Moolenaar
Problem: Ruby detection fails on Fedora 19. Solution: Use one way to get the Ruby version. (Michael Henry)
2013-08-05updated for version 7.4b.015Bram Moolenaar
Problem: Can't compile without the 'acd' feature. Solution: Add #ifdefs. (Kazunobu Kuriyama)
2013-08-03Update runtime files.Bram Moolenaar
2013-08-03updated for version 7.4b.014Bram Moolenaar
Problem: Stupid mistake. Solution: Changle "len" to "i".
2013-08-03updated for version 7.4b.013Bram Moolenaar
Problem: Install dir for JP man pages is wrong. Solution: Remove ".UTF-8" from the directory name. (Ken Takata)
2013-08-03updated for version 7.4b.012Bram Moolenaar
Problem: Output from a shell command is truncated at a NUL. (lcd 47) Solution: Change every NUL into an SOH.
2013-08-03updated for version 7.4b.011Bram Moolenaar
Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list.
2013-08-02updated for version 7.4b.010Bram Moolenaar
Problem: Win32: Tcl library load does not use standard mechanism. Solution: Call vimLoadLib() instead of LoadLibraryEx(). (Ken Takata)
2013-08-02updated for version 7.4b.009Bram Moolenaar
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)
2013-08-02updated for version 7.4b.008Bram Moolenaar
Problem: 'autochdir' causes setbufvar() to change the current directory. (Ben Fritz) Solution: When disabling autocommands also reset 'acd' temporarily. (Christian Brabandt)
2013-08-02updated for version 7.4b.007Bram Moolenaar
Problem: On 32 bit MS-Windows :perldo does not work. Solution: Make sure time_t uses 32 bits. (Ken Takata)
2013-08-02updated for version 7.4b.006Bram Moolenaar
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.
2013-08-02updated for version 7.4b.005Bram Moolenaar
Problem: Finding %s in shellpipe and shellredir does not ignore %%s. Solution: Skip over %%. (lcd 47)
2013-08-01updated for version 7.4b.004Bram Moolenaar
Problem: Regexp crash on pattern "@\%[\w\-]*". (Axel Kielhorn) Solution: Add \%(\) around \%[] internally.
2013-08-01updated for version 7.4b.003Bram Moolenaar
Problem: Regexp code is not nicely aligned. Solution: Adjust white space. (Ken Takata)
2013-08-01updated for version 7.4b.002Bram Moolenaar
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.
2013-08-01updated for version 7.4b.001Bram Moolenaar
Problem: Win32: dialog may extend off-screen. Solution: Reduce the size, use correct borders. (Andrei Olsen)
2013-07-28Update files for the 7.4b BETA release.Bram Moolenaar
2013-07-28updated for version 7.4a.047Bram Moolenaar
Problem: Some comments are not so nice. Solution: Change the comments.
2013-07-28Updated runtime files.Bram Moolenaar
2013-07-28updated for version 7.4a.046Bram Moolenaar
Problem: Can't build without mbyte feature. Solution: Add #ifdefs.
2013-07-28updated for version 7.4a.045Bram Moolenaar
Problem: Configure does not always find the right library for Lua. Missing support for LuaJit. Solution: Improve the configure detection of Lua. (Hiroshi Shirosaki)
2013-07-24Updated runtime files.Bram Moolenaar
2013-07-24updated for version 7.4a.044Bram Moolenaar
Problem: Test 96 sometimes fails. Solution: Clear window from b_wininfo in win_free(). (Suggestion by Yukihiro Nakadaira)
2013-07-24updated for version 7.4a.043Bram Moolenaar
Problem: More ml_get errors when adding or deleting lines from Python. (Vlad Irnov) Solution: Switch to a window with the buffer when possible.
2013-07-24updated for version 7.4a.042Bram Moolenaar
Problem: Crash when BufUnload autocommands close all buffers. (Andrew Pimlott) Solution: Set curwin->w_buffer to curbuf to avoid NULL.
2013-07-24updated for version 7.4a.041Bram Moolenaar
Problem: When using ":new ++ff=unix" and "dos" is first in 'fileformats' then 'ff' is set to "dos" instead of "unix". (Ingo Karkat) Solution: Create set_file_options() and invoke it from do_ecmd().
2013-07-24updated for version 7.4a.040Bram Moolenaar
Problem: Win32: using uninitialized variable. Solution: (Yukihiro Nakadaira)
2013-07-21updated for version 7.4a.039Bram Moolenaar
Problem: New regexp engine doesn't match pattern. (Ingo Karkat) Solution: When adding a state also check for different PIM if the list of states has any state with a PIM.
2013-07-21updated for version 7.4a.038Bram Moolenaar
Problem: When using MSVC 2012 there are various issues, including GUI size computations. Solution: Use SM_CXPADDEDBORDER. (Mike Williams)
2013-07-21updated for version 7.4a.037Bram Moolenaar
Problem: Win32: When mouse is hidden and in the toolbar, moving it won't make it appear. (Sami Salonen) Solution: Add tabline_wndproc() and toolbar_wndproc(). (Ken Takata)