summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-17updated for version 7.3.964Bram Moolenaar
Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
2013-05-17updated for version 7.3.963Bram Moolenaar
Problem: Setting curbuf without curwin causes trouble. Solution: Add switch_buffer() and restore_buffer(). Block autocommands to avoid trouble.
2013-05-17updated for version 7.3.962Bram Moolenaar
Problem: Python tests are not portable. Solution: Use shiftwidth instead of iminsert. (ZyX)
2013-05-16updated for version 7.3.961Bram Moolenaar
Problem: Tests 86 and 87 fail when using another language than English. Solution: Set the language to C in the test. (Dominique Pelle)
2013-05-15updated for version 7.3.960Bram Moolenaar
Problem: Compiler warning for unused variable. Solution: Put declaration in #ifdef.
2013-05-15updated for version 7.3.959Bram Moolenaar
Problem: Missing error number. Solution: Assign an error number.
2013-05-15updated for version 7.3.958Bram Moolenaar
Problem: Python: Iteration destructor not set. Solution: Put IterDestructor to use. (ZyX)
2013-05-15updated for version 7.3.957Bram Moolenaar
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
2013-05-15updated for version 7.3.956Bram Moolenaar
Problem: Python vim.bindeval() causes SIGABRT. Solution: Make pygilstate a local variable. (Yukihiro Nakadaira)
2013-05-15updated for version 7.3.955Bram Moolenaar
Problem: Python: Not enough tests. Solution: Add tests for vim.{current,window*,tabpage*}. (ZyX)
2013-05-15updated for version 7.3.954Bram Moolenaar
Problem: No check if PyObject_IsTrue fails. Solution: Add a check for -1 value. (ZyX)
2013-05-15updated for version 7.3.953Bram Moolenaar
Problem: Python: string exceptions are deprecated. Solution: Make vim.error an Exception subclass. (ZyX)
2013-05-15updated for version 7.3.952Bram Moolenaar
Problem: Python: It's not easy to change window/buffer/tabpage. Solution: Add ability to assign to vim.current.{tabpage,buffer,window}. (ZyX)
2013-05-15updated for version 7.3.951Bram Moolenaar
Problem: Python exceptions have problems. Solution: Change some IndexErrors to TypeErrors. Make “line number out of range” an IndexError. Make “unable to get option value” a RuntimeError. Make all PyErr_SetString messages start with lowercase letter and use _(). (ZyX)
2013-05-15updated for version 7.3.950Bram Moolenaar
Problem: Python: Stack trace printer can't handle messages. Solution: Make KeyErrors use PyErr_SetObject. (ZyX)
2013-05-15updated for version 7.3.949Bram Moolenaar
Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
2013-05-15updated for version 7.3.948Bram Moolenaar
Problem: Cannot build with Python 2.2 Solution: Make Python interface work with Python 2.2 Make 2.2 the first supported version. (ZyX)
2013-05-15updated for version 7.3.947Bram Moolenaar
Problem: Python: No iterator for vim.list and vim.bufferlist. Solution: Add the iterators. Also fix name of FunctionType. Add tests for vim.buffers. (ZyX)
2013-05-15updated for version 7.3.946Bram Moolenaar
Problem: Sometimes get stuck in waiting for cursor position report, resulting in keys starting with <Esc>[ not working. Solution: Only wait for more characters after <Esc>[ if followed by '?', '>' or a digit.
2013-05-15updated for version 7.3.945Bram Moolenaar
Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
2013-05-13updated for version 7.3.944Bram Moolenaar
Problem: External program receives the termrespone. Solution: Insert a delay and discard input. (Hayaki Saito)
2013-05-12updated for version 7.3.943Bram Moolenaar
Problem: Python: Negative indices were failing. Solution: Fix negative indices. Add tests. (ZyX)
2013-05-12updated for version 7.3.942Bram Moolenaar
Problem: Python: SEGV in Buffer functions. Solution: Call CheckBuffer() at the right time. (ZyX)
2013-05-12updated for version 7.3.941Bram Moolenaar
Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
2013-05-12updated for version 7.3.940Bram Moolenaar
Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
2013-05-12updated for version 7.3.939Bram Moolenaar
Problem: Using Py_BuildValue is inefficient sometimes. Solution: Use PyLong_FromLong(). (ZyX)
2013-05-12updated for version 7.3.938Bram Moolenaar
Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
2013-05-12updated for version 7.3.937Bram Moolenaar
Problem: More can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX)
2013-05-12updated for version 7.3.936Bram Moolenaar
Problem: Ruby 1.8: Missing piece for static linking on 64 bit systems. Solution: Define ruby_init_stack() (Hiroshi Shirosaki) Also fix preprocessor indents.
2013-05-11updated for version 7.3.935Bram Moolenaar
Problem: Init stack works differently on 64 bit systems. Solution: Handle 64 bit systems and also static library. (Yukihiro Nakadaira)
2013-05-11updated for version 7.3.934Bram Moolenaar
Problem: E381 and E380 make the user think nothing happened. Solution: Display the message indicating what error list is now active. (Christian Brabandt)
2013-05-11updated for version 7.3.933Bram Moolenaar
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
2013-05-11updated for version 7.3.932Bram Moolenaar
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
2013-05-07updated for version 7.3.931Bram Moolenaar
Problem: No completion for :xmap and :smap. (Yukihiro Nakadaira) Solution: Add the case statements. (Christian Brabandt)
2013-05-07updated for version 7.3.930Bram Moolenaar
Problem: MSVC 2012 update is not recognized. Solution: Update the version in the makefile. (Raymond Ko)
2013-05-06updated for version 7.3.929Bram Moolenaar
Problem: Compiler warning for unused variable. Not freeing unused string. Solution: Remove the variable. Clear the options.
2013-05-06updated for version 7.3.928Bram Moolenaar
Problem: Can't build with strict C compiler. Solution: Move declaration to start of block. (Taro Muraoka)
2013-05-06Updated runtime files.Bram Moolenaar
2013-05-06updated for version 7.3.927Bram Moolenaar
Problem: Missing combining characters when putting text in a register. Solution: Include combining characters. (David Bürgin)
2013-05-06updated for version 7.3.926Bram Moolenaar
Problem: Autocommands are triggered by setwinvar() et al. Missing BufEnter on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of events for :tablose and :tabnew. Solution: Fix these autocommand events. (Zyx)
2013-05-06updated for version 7.3.925Bram Moolenaar
Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
2013-05-06updated for version 7.3.924Bram Moolenaar
Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
2013-05-04updated for version 7.3.923Bram Moolenaar
Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
2013-05-04updated for version 7.3.922Bram Moolenaar
Problem: No test for what 7.3.918 fixes. Solution: Add a test. (David Bürgin)
2013-05-04updated for version 7.3.921Bram Moolenaar
Problem: Trying to create a fontset handle when 'guifontset' is not set. Solution: Add curly braces around the code block. (Max Kirillov)
2013-05-04updated for version 7.3.920Bram Moolenaar
Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams)
2013-05-04updated for version 7.3.919Bram Moolenaar
Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
2013-04-24Updated runtime files.Bram Moolenaar
2013-04-24updated for version 7.3.918Bram Moolenaar
Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David Bürgin)
2013-04-24updated for version 7.3.917Bram Moolenaar
Problem: When a path ends in a backslash appending a comma has the wrong effect. Solution: Replace a trailing backslash with a slash. (Nazri Ramliy)