- Mar 07, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Enum is not indented correctly with "public" etc. Solution: Skip "public", "private" and "protected". (Hong Xu)
-
- Feb 26, 2013
-
-
Bram Moolenaar authored
Problem: Missing test file changes. Solution: Change the tests.
-
Bram Moolenaar authored
Problem: Compiler warning for signed/unsigned pointer. Solution: Add type cast. (Christian Brabandt)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: "\@<!" in regexp does not work correctly with multi-byte characters, especially cp932. Solution: Move column to start of multi-byte character. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
Problem: Some files missing in the list of distributed files. Solution: Add lines for new files.
-
Bram Moolenaar authored
Problem: Insufficient testing for mksession. Solution: Add tests. (mostly by Roland Eggner)
-
Bram Moolenaar authored
Problem: Empty lines in :version output when 'columns' is 320. Solution: Simplify the logic of making columns. (Nazri Ramliy, Roland Eggner)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: "xxd -i" fails on an empty file. Solution: Do output the closing } for an empty file. (partly by Lawrence Woodman)
-
Bram Moolenaar authored
Problem: Ruby 2.0 has a few API changes. Solution: Add handling of Ruby 2.0. (Yasuhiro Matsumoto)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
-
- Feb 20, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: Clumsy to handle the situation that a variable does not exist. Solution: Add default value to getbufvar() et al. (Shougo Matsushita, Hirohito Higashi)
-
Bram Moolenaar authored
Problem: :mksession confuses bytes, columns and characters when positioning the cursor. Solution: Use w_virtcol with "|" instead of w_cursor.col with "l".
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Mappings are not aware of wildmenu mode. Solution: Add wildmenumode(). (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Python tests fail. Solution: Adjust the output for the stack trace.
-
Bram Moolenaar authored
Problem: List of features in :version output is hard to read. Solution: Make columns. (Nazri Ramliy)
-
Bram Moolenaar authored
Problem: With Python errors are not always clear. Solution: Print the stack trace, unless :silent is used. (ZyX)
-
Bram Moolenaar authored
Problem: Can redefine builtin functions. (ZyX) Solution: Disallow adding a function to g:.
-
Bram Moolenaar authored
Problem: Building with Cygwin: '-lsupc++' is not needed. Solution: Remove it. (Ken Takata)
-
- Feb 17, 2013
-
-
Bram Moolenaar authored
Problem: Crash when accessing freed buffer. Solution: Get 'textwidth' in caller of enter_buffer(). (Christian Brabandt)
-
- Feb 16, 2013
-
-
Bram Moolenaar authored
Problem: Build with OLE and Cygwin is broken. (Steve Hall) Solution: Select static or shared stdc library. (Ken Takta)
-
- 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.
-