- 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
-
Bram Moolenaar authored
Problem: Some comments are not so nice. Solution: Change the comments.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't build without mbyte feature. Solution: Add #ifdefs.
-
Bram Moolenaar authored
Problem: Configure does not always find the right library for Lua. Missing support for LuaJit. Solution: Improve the configure detection of Lua. (Hiroshi Shirosaki)
-
- Jul 24, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Test 96 sometimes fails. Solution: Clear window from b_wininfo in win_free(). (Suggestion by Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: More ml_get errors when adding or deleting lines from Python. (Vlad Irnov) Solution: Switch to a window with the buffer when possible.
-
Bram Moolenaar authored
Problem: Crash when BufUnload autocommands close all buffers. (Andrew Pimlott) Solution: Set curwin->w_buffer to curbuf to avoid NULL.
-
Bram Moolenaar authored
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().
-
Bram Moolenaar authored
Problem: Win32: using uninitialized variable. Solution: (Yukihiro Nakadaira)
-
- Jul 21, 2013
-
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: When using MSVC 2012 there are various issues, including GUI size computations. Solution: Use SM_CXPADDEDBORDER. (Mike Williams)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: "\p" in a regexp does not match double-width characters. (Yukihiro Nakadaira) Solution: Don't count display cells, use vim_isprintc().
-
- Jul 17, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Fix in patch 7.4a.032 is not tested. Solution: Add test.
-
Bram Moolenaar authored
Problem: The tabline may flicker when opening a new tab after 7.3.759 on Win32. Solution: Move call to TabCtrl_SetCurSel(). (Ken Takata)
-
Bram Moolenaar authored
Problem: Test 98 always passes. Solution: Include test98a.in in test98.in, execute the crucial command in one line. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: New regexp engine: Does not match shorter alternative. (Ingo Karkat) Solution: Do not drop a new state when the PIM info is different.
-
Bram Moolenaar authored
Problem: Compiler warnings. (Charles Campbell) Solution: Initialize variables even when not needed.
-
Bram Moolenaar authored
Problem: Missing find_win_for_buf(). (toothpik) Solution: Add missing changes.
-
Bram Moolenaar authored
Problem: Can't build with MzScheme on Ubuntu 13.04. Solution: Add configure check for the "ffi" library.
-
Bram Moolenaar authored
Problem: Crash when spell checking in new buffer. Solution: Set the b_p_key field. (Mike Williams)
-
Bram Moolenaar authored
Problem: When Python adds lines to another buffer the cursor position is wrong, it might be below the last line causing ml_get errors. (Vlad Irnov) Solution: Temporarily change the current window, so that marks are corrected properly.
-