summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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)
* updated for version 7.3.916v7.3.916Bram Moolenaar2013-04-242-17/+19
| | | | | Problem: Using freed memory when pasting with the mouse (Issue 130). Solution: Get the byte value early. (hint by Dominique Pelle)
* updated for version 7.3.915v7.3.915Bram Moolenaar2013-04-242-0/+4
| | | | | | Problem: When reading a file with encoding conversion fails at the end the next encoding in 'fencs' is not used. Solution: Retry with another encoding when possible. (Taro Muraoka)
* updated for version 7.3.914v7.3.914Bram Moolenaar2013-04-243-2/+4
| | | | | Problem: ~/.viminfo is messed up when running tests. Solution: Set the viminfo filename.
* updated for version 7.3.913v7.3.913Bram Moolenaar2013-04-242-1/+6
| | | | | Problem: Still a crash when writing viminfo. Solution: Add checks for NULL pointers. (Ron Aaron)
* updated for version 7.3.912v7.3.912Bram Moolenaar2013-04-242-0/+8
| | | | | | Problem: Typing a ":" command at the hit-enter dialog does not work if the "file changed" dialog happens next. Solution: Check for changed files before giving the hit-enter dialog.
* updated for version 7.3.911v7.3.911Bram Moolenaar2013-04-2411-14/+65
| | | | | Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
* updated for version 7.3.910v7.3.910Bram Moolenaar2013-04-243-39/+4
| | | | | Problem: Python code in #ifdef branches with only minor differences. Solution: Merge the #ifdef branches. (ZyX)
* updated for version 7.3.909v7.3.909Bram Moolenaar2013-04-244-775/+503
| | | | | | Problem: Duplicate Python code. Solution: Move more items to if_py_both.h. (ZyX) Also avoid compiler warnings for missing initializers.
* updated for version 7.3.908v7.3.908Bram Moolenaar2013-04-242-0/+4
| | | | | Problem: Possible crash when using a list in Python. Solution: Return early if the list is NULL. (ZyX)
* updated for version 7.3.907v7.3.907Bram Moolenaar2013-04-246-3/+13
| | | | | Problem: Python uses IndexError when a dict key is not found. Solution: Use KeyError instead. (ZyX)
* updated for version 7.3.906v7.3.906Bram Moolenaar2013-04-242-2/+6
| | | | | Problem: The "sleep .2" for running tests does not work on Solaris. Solution: Fall back to using "sleep 1". (Laurent Blume)
* updated for version 7.3.905v7.3.905Bram Moolenaar2013-04-152-0/+3
| | | | | Problem: Crash when writing viminfo. (Ron Aaron) Solution: Prevent freed history info to be used.
* updated for version 7.3.904v7.3.904Bram Moolenaar2013-04-152-0/+6
| | | | | Problem: Using memory freed by the garbage collector. Solution: Mark items in aucmd_win as used.
* updated for version 7.3.903v7.3.903Bram Moolenaar2013-04-152-1/+11
| | | | | Problem: Crash on exit writing viminfo. (Ron Aaron) Solution: Check for the history to be empty.
* updated for version 7.3.902v7.3.902Bram Moolenaar2013-04-152-0/+3
| | | | | Problem: When deleting last buffer in other tab the tabline is not updated. Solution: Set the redraw_tabline flag. (Yukihiro Nakadaira)
* updated for version 7.3.901v7.3.901Bram Moolenaar2013-04-154-4/+7
| | | | | Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.