- Feb 14, 2013
-
-
Bram Moolenaar authored
Problem: Build errors and warnings when building with small features and Lua, Perl or Ruby. Solution: Add #ifdefs and UNUSED.
-
Bram Moolenaar authored
Problem: Compiling without +eval and with Python isn't working. Solution: Add the eval feature when building with Python.
-
Bram Moolenaar authored
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".
-
Bram Moolenaar authored
Problem: Test 89 fails with tiny and small features. Solution: Add sourcing small.vim.
-
- Feb 13, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Can't compute a hash. Solution: Add the sha256() function. (Tyru, Hirohito Higashi)
-
Bram Moolenaar authored
Problem: Building with Cygwin and Ruby doesn't work. Solution: Copy some things from the MingW build file. (Ken Takata)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: The CompleteDone event is not triggered when there are no pattern matches. (Jianjun Mao) Solution: Trigger the event. (Christian Brabandt)
-
Bram Moolenaar authored
Add missing test files.
-
Bram Moolenaar authored
Problem: When 'indentexpr' moves the cursor "curswant" not restored. Solution: Restore "curswant". (Sung Pae)
-
Bram Moolenaar authored
Problem: Useless termresponse parsing for SGR mouse. Solution: Skip the parsing. (Hayaki Saito)
-
Bram Moolenaar authored
Problem: 'relativenumber is reset unexpectedly. (François Ingelrest) Solution: After an option was reset also reset the global value. Add a test. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The dosinst.c program has a buffer overflow. (Thomas Gwae) Solution: Ignore $VIMRUNTIME if it is too long.
-
Bram Moolenaar authored
Problem: Python threads still do not work properly. Solution: Fix both Python 2 and 3. Add tests. (Ken Takata)
-
Bram Moolenaar authored
Problem: Popup menu does not work properly with the preview window, folds and 'cursorcolumn'. Solution: Redraw the popup menu after redrawing windows. (Christian Brabandt)
-
- Feb 06, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warnings in Perl code when building with Visual studio 2012. (skeept) Solution: Add type casts. (Christian Brabandt, 2013 Jan 30)
-
Bram Moolenaar authored
Problem: Lua version 5.2 is not detected properly on Arch Linux. Solution: Adjust autoconf. (lilydjwg)
-
Bram Moolenaar authored
Problem: Compiler warning for tiny build. (Tony Mechelynck) Solution: Add #ifdefs around variable.
-
Bram Moolenaar authored
Problem: Substitute with confirmation and then "q" does not replace anything. (John McGowan) Solution: Do not break the loop, skip to the end.
-
Bram Moolenaar authored
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: The " mark is not adjusted when inserting lines. (Roland Eggner) Solution: Adjust the line number. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: The color column is not correct when entering a buffer. (Ben Fritz) Solution: Call check_colorcolumn() if 'textwidth' changed. (Christian Brabandt)
-
- Jan 31, 2013
-
-
Bram Moolenaar authored
Problem: MzScheme: circular list does not work correctly. Solution: Separate Mac-specific code from generic code. (Sergey Khorev)
-
- Jan 30, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for size_t to int conversion. (Skeept) Solution: Add type casts.
-
Bram Moolenaar authored
Problem: "/[^\n]" does match at a line break. Solution: Make it do the same as "/.". (Christian Brabandt)
-
Bram Moolenaar authored
Problem: MzScheme does not build with tiny features. Solution: Add #ifdefs. Also add UNUSED to avoid warnings. And change library ordering.
-
Bram Moolenaar authored
Problem: Tiny build fails. (Tony Mechelynck) Solution: Adjust #ifdefs.
-
Bram Moolenaar authored
Problem: New interactive :substutite behavior is not tested. Solution: Add tests. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: ":substitute" works differently without confirmation. Solution: Do not change the text when asking for confirmation, only display it.
-
Bram Moolenaar authored
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: After reloading a buffer the modelines are not processed. Solution: call do_modelines(). (Ken Takata)
-
Bram Moolenaar authored
Problem: "\k" in regexp does not work in other window. Solution: Use the right buffer. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: When only using patches build fails on missing nl.po. Solution: Create an empty nl.po file.
-
Bram Moolenaar authored
Problem: With 'relativenumber' set it is not possible to see the absolute line number. Solution: For the cursor line show the absolute line number instead of a zero. (Nazri Ramliy)
-
Bram Moolenaar authored
Problem: Python threads don't run in the background (issue 103). Solution: Move the statements to manipulate thread state.
-
- Jan 25, 2013
-
-
Bram Moolenaar authored
Problem: Crash with specific use of search pattern. Solution: Initialize reg_buf to curbuf.
-