summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-02-26updated for version 7.3.843Bram Moolenaar
Problem: Missing test file changes. Solution: Change the tests.
2013-02-26updated for version 7.3.842Bram Moolenaar
Problem: Compiler warning for signed/unsigned pointer. Solution: Add type cast. (Christian Brabandt)
2013-02-26updated for version 7.3.841Bram Moolenaar
Problem: When a "cond ? one : two" expression has a subscript it is not parsed correctly. (Andy Wokula) Solution: Handle a subscript also when the type is unknown. (Christian Brabandt)
2013-02-26updated for version 7.3.840Bram Moolenaar
Problem: "\@<!" in regexp does not work correctly with multi-byte characters, especially cp932. Solution: Move column to start of multi-byte character. (Yasuhiro Matsumoto)
2013-02-26updated for version 7.3.839Bram Moolenaar
Problem: Some files missing in the list of distributed files. Solution: Add lines for new files.
2013-02-26updated for version 7.3.838Bram Moolenaar
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
2013-02-26updated for version 7.3.837Bram Moolenaar
Problem: Empty lines in :version output when 'columns' is 320. Solution: Simplify the logic of making columns. (Nazri Ramliy, Roland Eggner)
2013-02-26updated for version 7.3.836Bram Moolenaar
Problem: Clipboard does not work on Win32 when compiled with Cygwin. Solution: Move the Win32 clipboard code to a separate file and use it when building with os_unix.c. (Frodak Baksik, Ken Takata)
2013-02-26updated for version 7.3.835Bram Moolenaar
Problem: "xxd -i" fails on an empty file. Solution: Do output the closing } for an empty file. (partly by Lawrence Woodman)
2013-02-26updated for version 7.3.834Bram Moolenaar
Problem: Ruby 2.0 has a few API changes. Solution: Add handling of Ruby 2.0. (Yasuhiro Matsumoto)
2013-02-26updated for version 7.3.833Bram Moolenaar
Problem: In the terminal the scroll wheel always scrolls the active window. Solution: Scroll the window under the mouse pointer, like in the GUI. (Bradie Rao)
2013-02-26updated for version 7.3.832Bram Moolenaar
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
2013-02-20updated for version 7.3.831Bram Moolenaar
Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
2013-02-20updated for version 7.3.830Bram Moolenaar
Problem: :mksession confuses bytes, columns and characters when positioning the cursor. Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
2013-02-20updated for version 7.3.829Bram Moolenaar
Problem: When compiled with the +rightleft feature 'showmatch' also shows a match for the opening paren. When 'revins' is set the screen may scroll. Solution: Only check the opening paren when the +rightleft feature was enabled. Do not show a match that is not visible. (partly by Christian Brabandt)
2013-02-20updated for version 7.3.828Bram Moolenaar
Problem: Mappings are not aware of wildmenu mode. Solution: Add wildmenumode(). (Christian Brabandt)
2013-02-20updated for version 7.3.827Bram Moolenaar
Problem: Python tests fail. Solution: Adjust the output for the stack trace.
2013-02-20updated for version 7.3.826Bram Moolenaar
Problem: List of features in :version output is hard to read. Solution: Make columns. (Nazri Ramliy)
2013-02-20updated for version 7.3.825Bram Moolenaar
Problem: With Python errors are not always clear. Solution: Print the stack trace, unless :silent is used. (ZyX)
2013-02-20updated for version 7.3.824Bram Moolenaar
Problem: Can redefine builtin functions. (ZyX) Solution: Disallow adding a function to g:.
2013-02-20updated for version 7.3.823Bram Moolenaar
Problem: Building with Cygwin: '-lsupc++' is not needed. Solution: Remove it. (Ken Takata)
2013-02-17updated for version 7.3.822Bram Moolenaar
Problem: Crash when accessing freed buffer. Solution: Get 'textwidth' in caller of enter_buffer(). (Christian Brabandt)
2013-02-16updated for version 7.3.821Bram Moolenaar
Problem: Build with OLE and Cygwin is broken. (Steve Hall) Solution: Select static or shared stdc library. (Ken Takta)
2013-02-14updated for version 7.3.820Bram Moolenaar
Problem: Build errors and warnings when building with small features and Lua, Perl or Ruby. Solution: Add #ifdefs and UNUSED.
2013-02-14updated for version 7.3.819Bram Moolenaar
Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
2013-02-14updated for version 7.3.818Bram Moolenaar
Problem: When test 40 fails because of a bad build it may leave files behind that cause it to fail later. Solution: Let the file names start with "X".
2013-02-14updated for version 7.3.817Bram Moolenaar
Problem: Test 89 fails with tiny and small features. Solution: Add sourcing small.vim.
2013-02-13Add test files.Bram Moolenaar
2013-02-13updated for version 7.3.816Bram Moolenaar
Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi)
2013-02-13updated for version 7.3.815Bram Moolenaar
Problem: Building with Cygwin and Ruby doesn't work. Solution: Copy some things from the MingW build file. (Ken Takata)
2013-02-13updated for version 7.3.814Bram Moolenaar
Problem: Can't input multibyte characters on Win32 console if 'encoding' is different from current codepage. Solution: Use convert_input_safe() instead of convert_input(). Make string_convert_ext() return an error for incomplete input. (Ken Takata)
2013-02-13updated for version 7.3.813Bram Moolenaar
Problem: The CompleteDone event is not triggered when there are no pattern matches. (Jianjun Mao) Solution: Trigger the event. (Christian Brabandt)
2013-02-13Update runtime files.Bram Moolenaar
Add missing test files.
2013-02-13updated for version 7.3.812Bram Moolenaar
Problem: When 'indentexpr' moves the cursor "curswant" not restored. Solution: Restore "curswant". (Sung Pae)
2013-02-13updated for version 7.3.811Bram Moolenaar
Problem: Useless termresponse parsing for SGR mouse. Solution: Skip the parsing. (Hayaki Saito)
2013-02-13updated for version 7.3.810Bram Moolenaar
Problem: 'relativenumber is reset unexpectedly. (François Ingelrest) Solution: After an option was reset also reset the global value. Add a test. (Christian Brabandt)
2013-02-13updated for version 7.3.809Bram Moolenaar
Problem: The dosinst.c program has a buffer overflow. (Thomas Gwae) Solution: Ignore $VIMRUNTIME if it is too long.
2013-02-13updated for version 7.3.808Bram Moolenaar
Problem: Python threads still do not work properly. Solution: Fix both Python 2 and 3. Add tests. (Ken Takata)
2013-02-13updated for version 7.3.807Bram Moolenaar
Problem: Popup menu does not work properly with the preview window, folds and 'cursorcolumn'. Solution: Redraw the popup menu after redrawing windows. (Christian Brabandt)
2013-02-06updated for version 7.3.806Bram Moolenaar
Problem: Compiler warnings in Perl code when building with Visual studio 2012. (skeept) Solution: Add type casts. (Christian Brabandt, 2013 Jan 30)
2013-02-06updated for version 7.3.805Bram Moolenaar
Problem: Lua version 5.2 is not detected properly on Arch Linux. Solution: Adjust autoconf. (lilydjwg)
2013-02-06updated for version 7.3.804Bram Moolenaar
Problem: Compiler warning for tiny build. (Tony Mechelynck) Solution: Add #ifdefs around variable.
2013-02-06updated for version 7.3.803Bram Moolenaar
Problem: Substitute with confirmation and then "q" does not replace anything. (John McGowan) Solution: Do not break the loop, skip to the end.
2013-02-06updated for version 7.3.802Bram Moolenaar
Problem: After setting 'isk' to a value ending in a comma appending to the option fails. Solution: Disallow a trailing comma for 'isk' and similar options.
2013-02-06updated for version 7.3.801Bram Moolenaar
Problem: ":window set nu?" displays the cursor line. (Nazri Ramliy) Solution: Do not update the cursor line when conceallevel is zero or the screen has scrolled. (partly by Christian Brabandt)
2013-02-06updated for version 7.3.800Bram Moolenaar
Problem: The " mark is not adjusted when inserting lines. (Roland Eggner) Solution: Adjust the line number. (Christian Brabandt)
2013-02-06updated for version 7.3.799Bram Moolenaar
Problem: The color column is not correct when entering a buffer. (Ben Fritz) Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian Brabandt)
2013-01-31updated for version 7.3.798Bram Moolenaar
Problem: MzScheme: circular list does not work correctly. Solution: Separate Mac-specific code from generic code. (Sergey Khorev)
2013-01-30updated for version 7.3.797Bram Moolenaar
Problem: Compiler warning for size_t to int conversion. (Skeept) Solution: Add type casts.
2013-01-30updated for version 7.3.796Bram Moolenaar
Problem: "/[^\n]" does match at a line break. Solution: Make it do the same as "/.". (Christian Brabandt)