- May 17, 2013
-
-
Bram Moolenaar authored
-
Bram Moolenaar authored
Problem: There is ":py3do" but no ":pydo". Solution: Add the ":pydo" command. (Lilydjwg)
-
Bram Moolenaar authored
Problem: Python garbage collection not working properly. Solution: Add support for garbage collection. (ZyX)
-
Bram Moolenaar authored
Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
-
Bram Moolenaar authored
Problem: Setting curbuf without curwin causes trouble. Solution: Add switch_buffer() and restore_buffer(). Block autocommands to avoid trouble.
-
Bram Moolenaar authored
Problem: Python tests are not portable. Solution: Use shiftwidth instead of iminsert. (ZyX)
-
- May 16, 2013
-
-
Bram Moolenaar authored
Problem: Tests 86 and 87 fail when using another language than English. Solution: Set the language to C in the test. (Dominique Pelle)
-
- May 15, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. Solution: Put declaration in #ifdef.
-
Bram Moolenaar authored
Problem: Missing error number. Solution: Assign an error number.
-
Bram Moolenaar authored
Problem: Python: Iteration destructor not set. Solution: Put IterDestructor to use. (ZyX)
-
Bram Moolenaar authored
Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
-
Bram Moolenaar authored
Problem: Python vim.bindeval() causes SIGABRT. Solution: Make pygilstate a local variable. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: Python: Not enough tests. Solution: Add tests for vim.{current,window*,tabpage*}. (ZyX)
-
Bram Moolenaar authored
Problem: No check if PyObject_IsTrue fails. Solution: Add a check for -1 value. (ZyX)
-
Bram Moolenaar authored
Problem: Python: string exceptions are deprecated. Solution: Make vim.error an Exception subclass. (ZyX)
-
Bram Moolenaar authored
Problem: Python: It's not easy to change window/buffer/tabpage. Solution: Add ability to assign to vim.current.{tabpage,buffer,window}. (ZyX)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
Problem: Python: Stack trace printer can't handle messages. Solution: Make KeyErrors use PyErr_SetObject. (ZyX)
-
Bram Moolenaar authored
Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
-
Bram Moolenaar authored
Problem: Cannot build with Python 2.2 Solution: Make Python interface work with Python 2.2 Make 2.2 the first supported version. (ZyX)
-
Bram Moolenaar authored
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)
-
Bram Moolenaar authored
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.
-
Bram Moolenaar authored
Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
-
- May 13, 2013
-
-
Bram Moolenaar authored
Problem: External program receives the termrespone. Solution: Insert a delay and discard input. (Hayaki Saito)
-
- May 12, 2013
-
-
Bram Moolenaar authored
Problem: Python: Negative indices were failing. Solution: Fix negative indices. Add tests. (ZyX)
-
Bram Moolenaar authored
Problem: Python: SEGV in Buffer functions. Solution: Call CheckBuffer() at the right time. (ZyX)
-
Bram Moolenaar authored
Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
-
Bram Moolenaar authored
Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
-
Bram Moolenaar authored
Problem: Using Py_BuildValue is inefficient sometimes. Solution: Use PyLong_FromLong(). (ZyX)
-
Bram Moolenaar authored
Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
-
Bram Moolenaar authored
Problem: More can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX)
-
Bram Moolenaar authored
Problem: Ruby 1.8: Missing piece for static linking on 64 bit systems. Solution: Define ruby_init_stack() (Hiroshi Shirosaki) Also fix preprocessor indents.
-
- May 11, 2013
-
-
Bram Moolenaar authored
Problem: Init stack works differently on 64 bit systems. Solution: Handle 64 bit systems and also static library. (Yukihiro Nakadaira)
-
Bram Moolenaar authored
Problem: E381 and E380 make the user think nothing happened. Solution: Display the message indicating what error list is now active. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
-
Bram Moolenaar authored
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
-
- May 07, 2013
-
-
Bram Moolenaar authored
Problem: No completion for :xmap and :smap. (Yukihiro Nakadaira) Solution: Add the case statements. (Christian Brabandt)
-
Bram Moolenaar authored
Problem: MSVC 2012 update is not recognized. Solution: Update the version in the makefile. (Raymond Ko)
-
- May 06, 2013
-
-
Bram Moolenaar authored
Problem: Compiler warning for unused variable. Not freeing unused string. Solution: Remove the variable. Clear the options.
-
Bram Moolenaar authored
Problem: Can't build with strict C compiler. Solution: Move declaration to start of block. (Taro Muraoka)
-