summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.964v7.3.964Bram Moolenaar2013-05-177-46/+60
| | | | | | Problem: Python: not so easy to access tab pages. Solution: Add window.tabpage, make window.number work with non-current tab pages. (ZyX)
* updated for version 7.3.963v7.3.963Bram Moolenaar2013-05-177-85/+163
| | | | | | Problem: Setting curbuf without curwin causes trouble. Solution: Add switch_buffer() and restore_buffer(). Block autocommands to avoid trouble.
* updated for version 7.3.962v7.3.962Bram Moolenaar2013-05-175-21/+23
| | | | | Problem: Python tests are not portable. Solution: Use shiftwidth instead of iminsert. (ZyX)
* updated for version 7.3.961v7.3.961Bram Moolenaar2013-05-164-2/+5
| | | | | Problem: Tests 86 and 87 fail when using another language than English. Solution: Set the language to C in the test. (Dominique Pelle)
* updated for version 7.3.960v7.3.960Bram Moolenaar2013-05-152-0/+4
| | | | | Problem: Compiler warning for unused variable. Solution: Put declaration in #ifdef.
* updated for version 7.3.959v7.3.959Bram Moolenaar2013-05-152-3/+5
| | | | | Problem: Missing error number. Solution: Assign an error number.
* updated for version 7.3.958v7.3.958Bram Moolenaar2013-05-152-2/+3
| | | | | Problem: Python: Iteration destructor not set. Solution: Put IterDestructor to use. (ZyX)
* updated for version 7.3.957v7.3.957Bram Moolenaar2013-05-156-1/+133
| | | | | Problem: Python does not have a "do" command like Perl or Lua. Solution: Add the ":py3do" command. (Lilydjwg)
* updated for version 7.3.956v7.3.956Bram Moolenaar2013-05-154-15/+32
| | | | | Problem: Python vim.bindeval() causes SIGABRT. Solution: Make pygilstate a local variable. (Yukihiro Nakadaira)
* updated for version 7.3.955v7.3.955Bram Moolenaar2013-05-155-0/+212
| | | | | Problem: Python: Not enough tests. Solution: Add tests for vim.{current,window*,tabpage*}. (ZyX)
* updated for version 7.3.954v7.3.954Bram Moolenaar2013-05-152-3/+14
| | | | | Problem: No check if PyObject_IsTrue fails. Solution: Add a check for -1 value. (ZyX)
* updated for version 7.3.953v7.3.953Bram Moolenaar2013-05-153-2/+7
| | | | | Problem: Python: string exceptions are deprecated. Solution: Make vim.error an Exception subclass. (ZyX)
* updated for version 7.3.952v7.3.952Bram Moolenaar2013-05-153-3/+95
| | | | | | Problem: Python: It's not easy to change window/buffer/tabpage. Solution: Add ability to assign to vim.current.{tabpage,buffer,window}. (ZyX)
* updated for version 7.3.951v7.3.951Bram Moolenaar2013-05-156-35/+50
| | | | | | | | 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)
* updated for version 7.3.950v7.3.950Bram Moolenaar2013-05-154-5/+13
| | | | | Problem: Python: Stack trace printer can't handle messages. Solution: Make KeyErrors use PyErr_SetObject. (ZyX)
* updated for version 7.3.949v7.3.949Bram Moolenaar2013-05-1510-12/+425
| | | | | Problem: Python: no easy access to tabpages. Solution: Add vim.tabpages and vim.current.tabpage. (ZyX)
* updated for version 7.3.948v7.3.948Bram Moolenaar2013-05-159-68/+40
| | | | | | Problem: Cannot build with Python 2.2 Solution: Make Python interface work with Python 2.2 Make 2.2 the first supported version. (ZyX)
* updated for version 7.3.947v7.3.947Bram Moolenaar2013-05-1511-47/+360
| | | | | | 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)
* updated for version 7.3.946v7.3.946Bram Moolenaar2013-05-152-2/+10
| | | | | | | 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.
* updated for version 7.3.945v7.3.945Bram Moolenaar2013-05-157-101/+88
| | | | | Problem: Python: List of buffers is not very useful. Solution: Make vim.buffers a map. No iterator yet. (ZyX)
* updated for version 7.3.944v7.3.944Bram Moolenaar2013-05-132-2/+14
| | | | | Problem: External program receives the termrespone. Solution: Insert a delay and discard input. (Hayaki Saito)
* updated for version 7.3.943v7.3.943Bram Moolenaar2013-05-127-4/+120
| | | | | Problem: Python: Negative indices were failing. Solution: Fix negative indices. Add tests. (ZyX)
* updated for version 7.3.942v7.3.942Bram Moolenaar2013-05-124-13/+28
| | | | | Problem: Python: SEGV in Buffer functions. Solution: Call CheckBuffer() at the right time. (ZyX)
* updated for version 7.3.941v7.3.941Bram Moolenaar2013-05-123-460/+438
| | | | | Problem: Stuff in if_py_both.h is ordered badly. Solution: Reorder by type. (ZyX)
* updated for version 7.3.940v7.3.940Bram Moolenaar2013-05-123-2/+13
| | | | | Problem: Python: Can't get position of window. Solution: Add window.row and window.col. (ZyX)
* updated for version 7.3.939v7.3.939Bram Moolenaar2013-05-122-2/+4
| | | | | Problem: Using Py_BuildValue is inefficient sometimes. Solution: Use PyLong_FromLong(). (ZyX)
* updated for version 7.3.938v7.3.938Bram Moolenaar2013-05-125-8/+30
| | | | | Problem: Python: not easy to get to window number. Solution: Add vim.window.number. (ZyX)
* updated for version 7.3.937v7.3.937Bram Moolenaar2013-05-124-211/+127
| | | | | Problem: More can be shared between Python 2 and 3. Solution: Move code to if_py_both.h. (ZyX)
* updated for version 7.3.936v7.3.936Bram Moolenaar2013-05-122-147/+153
| | | | | | Problem: Ruby 1.8: Missing piece for static linking on 64 bit systems. Solution: Define ruby_init_stack() (Hiroshi Shirosaki) Also fix preprocessor indents.
* updated for version 7.3.935v7.3.935Bram Moolenaar2013-05-112-3/+19
| | | | | | Problem: Init stack works differently on 64 bit systems. Solution: Handle 64 bit systems and also static library. (Yukihiro Nakadaira)
* updated for version 7.3.934v7.3.934Bram Moolenaar2013-05-112-3/+4
| | | | | | Problem: E381 and E380 make the user think nothing happened. Solution: Display the message indicating what error list is now active. (Christian Brabandt)
* updated for version 7.3.933v7.3.933Bram Moolenaar2013-05-114-5/+22
| | | | | Problem: Ruby on Mac crashes due to GC failure. Solution: Init the stack from main(). (Hiroshi Shirosaki)
* updated for version 7.3.932v7.3.932Bram Moolenaar2013-05-112-1/+3
| | | | | Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
* updated for version 7.3.931v7.3.931Bram Moolenaar2013-05-072-0/+6
| | | | | Problem: No completion for :xmap and :smap. (Yukihiro Nakadaira) Solution: Add the case statements. (Christian Brabandt)
* updated for version 7.3.930v7.3.930Bram Moolenaar2013-05-072-0/+5
| | | | | Problem: MSVC 2012 update is not recognized. Solution: Update the version in the makefile. (Raymond Ko)
* updated for version 7.3.929v7.3.929Bram Moolenaar2013-05-062-17/+17
| | | | | Problem: Compiler warning for unused variable. Not freeing unused string. Solution: Remove the variable. Clear the options.
* updated for version 7.3.928v7.3.928Bram Moolenaar2013-05-062-4/+4
| | | | | Problem: Can't build with strict C compiler. Solution: Move declaration to start of block. (Taro Muraoka)
* Updated runtime files.Bram Moolenaar2013-05-0612-23/+1976
|
* updated for version 7.3.927v7.3.927Bram Moolenaar2013-05-064-1/+19
| | | | | Problem: Missing combining characters when putting text in a register. Solution: Include combining characters. (David Bürgin)
* updated for version 7.3.926v7.3.926Bram Moolenaar2013-05-0610-56/+204
| | | | | | | 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)
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-0672-166/+167
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.924v7.3.924Bram Moolenaar2013-05-0614-18/+1299
| | | | | Problem: Python interface can't easily access options. Solution: Add vim.options, vim.window.options and vim.buffer.options. (ZyX)
* updated for version 7.3.923v7.3.923Bram Moolenaar2013-05-043-2/+13
| | | | | Problem: Check for X11 header files fails on Solaris. Solution: Only use -Werror for gcc. (Laurent Blume)
* updated for version 7.3.922v7.3.922Bram Moolenaar2013-05-043-5/+4
| | | | | Problem: No test for what 7.3.918 fixes. Solution: Add a test. (David Bürgin)
* updated for version 7.3.921v7.3.921Bram Moolenaar2013-05-042-0/+4
| | | | | Problem: Trying to create a fontset handle when 'guifontset' is not set. Solution: Add curly braces around the code block. (Max Kirillov)
* updated for version 7.3.920v7.3.920Bram Moolenaar2013-05-042-1/+3
| | | | | Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams)
* updated for version 7.3.919v7.3.919Bram Moolenaar2013-05-042-2/+5
| | | | | Problem: An empty nl.po file does not work with an old msgfmt. Solution: Put a single # in the file. (Laurent Blume)
* Updated runtime files.Bram Moolenaar2013-04-2427-1488/+2149
|
* updated for version 7.3.918v7.3.918Bram Moolenaar2013-04-242-4/+9
| | | | | Problem: Repeating an Ex command after using a Visual motion does not work. Solution: Check for an Ex command being used. (David Bürgin)
* updated for version 7.3.917v7.3.917Bram Moolenaar2013-04-244-0/+23
| | | | | | 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)