summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.4.148v7.4.148Bram Moolenaar2014-01-142-2/+12
| | | | | Problem: Cannot build with Cygwin and X11. Solution: Include Xwindows.h instead of windows.h. (Lech Lorens)
* updated for version 7.4.147v7.4.147Bram Moolenaar2014-01-144-1/+12
| | | | | | | Problem: Cursor moves to wrong position when using "gj" after "$" and virtual editing is active. Solution: Make "gj" behave differently when virtual editing is active. (Hirohito Higashi)
* updated for version 7.4.146v7.4.146Bram Moolenaar2014-01-142-1/+8
| | | | | Problem: When starting Vim with "-u NONE" v:oldfiles is NULL. Solution: Set v:oldfiles to an empty list. (Yasuhiro Matsumoto)
* updated for version 7.4.145v7.4.145Bram Moolenaar2014-01-143-2/+6
| | | | | | Problem: getregtype() does not return zero for unknown register. Solution: Adjust documention: return empty string for unknown register. Check the register name to be valid. (Yukihiro Nakadaira)
* updated for version 7.4.144v7.4.144Bram Moolenaar2014-01-142-1/+3
| | | | | Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. Solution: Adjust #ifdef. (Ken Takata)
* updated for version 7.4.143v7.4.143Bram Moolenaar2014-01-142-59/+63
| | | | | Problem: TextChangedI is not triggered. Solution: Reverse check for "ready". (lilydjwg)
* updated for version 7.4.142v7.4.142Bram Moolenaar2014-01-122-43/+30
| | | | | Problem: On MS-Windows 8 IME input doen't work correctly. Solution: Work around the problem. (Nobuhiro Takasaki)
* updated for version 7.4.141v7.4.141Bram Moolenaar2014-01-105-2/+18
| | | | | | | Problem: Problems when building with Borland: st_mode is signed short; can't build with Python; temp files not ignored by Mercurial; building with DEBUG doesn't define _DEBUG. Solution: Fix the problems. (Ken Takata)
* updated for version 7.4.140v7.4.140Bram Moolenaar2014-01-102-26/+56
| | | | | | Problem: Crash when wiping out buffer triggers autocommand that wipes out only other buffer. Solution: Do not delete the last buffer, make it empty. (Hirohito Higashi)
* updated for version 7.4.139v7.4.139Bram Moolenaar2014-01-103-3/+5
| | | | | Problem: Crash when using :cd in autocommand. (François Ingelrest) Solution: Set w_localdir to NULL after freeing it. (Dominique Pelle)
* updated for version 7.4.138v7.4.138Bram Moolenaar2014-01-102-2/+4
| | | | | Problem: Directory change messages are not recognized. Solution: Fix using a character range literally. (Lech Lorens)
* updated for version 7.4.137v7.4.137Bram Moolenaar2014-01-102-8/+79
| | | | | | Problem: Cannot use IME with Windows 8 console. Solution: Change the user of ReadConsoleInput() and PeekConsoleInput(). (Yasuhiro Matsumoto)
* updated for version 7.4.136v7.4.136Bram Moolenaar2014-01-103-3/+16
| | | | | | Problem: MS-Windows: When saving a file with a UNC path the file becomes read-only. Solution: Don't mix up Win32 attributes and Unix attributes. (Ken Takata)
* Updated runtime files.Bram Moolenaar2014-01-077-59/+186
|
* updated for version 7.4.135v7.4.135Bram Moolenaar2014-01-062-1/+3
| | | | | Problem: Missing dot in MingW test Makefile. Solution: Add the dot. (Michael Soyka)
* updated for version 7.4.134v7.4.134Bram Moolenaar2014-01-062-1/+3
| | | | | Problem: Spurious space in MingW Makefile. Solution: Remove the space. (Michael Soyka)
* updated for version 7.4.133v7.4.133Bram Moolenaar2014-01-063-4/+6
| | | | | Problem: Clang warns for using NUL. Solution: Change NUL to NULL. (Dominique Pelle)
* updated for version 7.4.132v7.4.132Bram Moolenaar2014-01-052-1/+3
| | | | | Problem: Win32: flags and inherit_handles arguments mixed up. Solution: Swap the argument. (cs86661)
* Runtime file updates.Bram Moolenaar2013-12-154-24/+48
|
* updated for version 7.4.131v7.4.131Bram Moolenaar2013-12-143-6/+11
| | | | | Problem: Syncbind causes E315 errors in some situations. (Liang Li) Solution: Set and restore curbuf in ex_syncbind(). (Christian Brabandt)
* updated for version 7.4.130v7.4.130Bram Moolenaar2013-12-142-2/+4
| | | | | Problem: Relative line numbers mix up windows when using folds. Solution: Use hasFoldingWin() instead of hasFolding(). (Lech Lorens)
* updated for version 7.4.129v7.4.129Bram Moolenaar2013-12-142-2/+4
| | | | | Problem: getline(-1) returns zero. (mvxxc) Solution: Return an empty string.
* updated for version 7.4.128v7.4.128Bram Moolenaar2013-12-143-0/+12
| | | | | Problem: Perl 5.18 for MSVC doesn't work. Solution: Add check in makefile and define __inline. (Ken Takata)
* updated for version 7.4.127v7.4.127Bram Moolenaar2013-12-142-7/+9
| | | | | Problem: Perl 5.18 on Unix doesn't work. Solution: Move workaround to after including vim.h. (Ken Takata)
* updated for version 7.4.126v7.4.126Bram Moolenaar2013-12-122-2/+4
| | | | | Problem: Compiler warnings for "const" and incompatible types. Solution: Remove "const", add type cast. (Ken Takata)
* Updated runtime files.Bram Moolenaar2013-12-1110-95/+131
|
* updated for version 7.4.125v7.4.125Bram Moolenaar2013-12-112-2/+4
| | | | | Problem: Win32: Dealing with messages may not work for multi-byte chars. Solution: Use pDispatchMessage(). (Ken Takata)
* updated for version 7.4.124v7.4.124Bram Moolenaar2013-12-112-0/+22
| | | | | Problem: Win32: Getting host name does not use wide function. Solution: Use GetComputerNameW() if possible. (Ken Takata)
* updated for version 7.4.123v7.4.123Bram Moolenaar2013-12-112-0/+22
| | | | | Problem: Win32: Getting user name does not use wide function. Solution: Use GetUserNameW() if possible. (Ken Takata)
* updated for version 7.4.122v7.4.122Bram Moolenaar2013-12-112-39/+73
| | | | | | | Problem: Win32: When 'encoding' is set to "utf-8" and the active codepage is cp932 then ":grep" and other commands don't work for multi-byte characters. Solution: (Yasuhiro Matsumoto)
* updated for version 7.4.121v7.4.121Bram Moolenaar2013-12-112-0/+6
| | | | | Problem: Completion doesn't work for ":py3d" and ":py3f". (Bohr Shaw) Solution: Skip over letters after ":py3".
* updated for version 7.4.120v7.4.120Bram Moolenaar2013-12-112-1/+5
| | | | | Problem: Can't build with Perl 5.18 on Linux. (Lcd 47) Solution: Add #ifdef. (Ken Takata)
* updated for version 7.4.119v7.4.119Bram Moolenaar2013-12-114-11/+112
| | | | | Problem: Vim doesn't work well on OpenVMS. Solution: Fix various problems. (Samuel Ferencik)
* updated for version 7.4.118v7.4.118Bram Moolenaar2013-12-112-1/+14
| | | | | | Problem: It's possible that redrawing the status lines causes win_redr_custom() to be called recursively. Solution: Protect against recursiveness. (Yasuhiro Matsumoto)
* updated for version 7.4.117v7.4.117Bram Moolenaar2013-12-114-15/+44
| | | | | | | Problem: Can't build with Cygwin/MingW and Perl 5.18. Solution: Add a linker argument for the Perl library. (Cesar Romani) Adjust CFLAGS and LIB. (Cesar Romani) Move including inline.h further down. (Ken Takata)
* updated for version 7.4.116v7.4.116Bram Moolenaar2013-12-112-0/+4
| | | | | | Problem: When a mapping starts with a space, the typed space does not show up for 'showcmd'. Solution: Show "<20>". (Brook Hong)
* updated for version 7.4.115v7.4.115Bram Moolenaar2013-12-112-1/+3
| | | | | | Problem: When using Zsh expanding ~abc doesn't work when the result contains a space. Solution: Off-by-one error in detecting the NUL. (Pavol Juhas)
* updated for version 7.4.114v7.4.114Bram Moolenaar2013-12-112-2/+4
| | | | | | Problem: New GNU make outputs messages about changing directory in another format. Solution: Recognize the new format.
* updated for version 7.4.113v7.4.113Bram Moolenaar2013-12-072-3/+6
| | | | | Problem: MSVC static analysis gives warnings. Solution: Avoid the warnings and avoid possible bugs. (Ken Takata)
* updated for version 7.4.112v7.4.112Bram Moolenaar2013-12-072-2/+4
| | | | | | Problem: The defaults for 'directory' and 'backupdir' on MS-Windows do not include a directory that exists. Solution: Use $TEMP.
* updated for version 7.4.111v7.4.111Bram Moolenaar2013-12-072-2/+7
| | | | | Problem: Memory leak in Python OptionsAssItem. (Ken Takata) Solution: Call Py_XDECREF() where needed. (ZyX)
* updated for version 7.4.110v7.4.110Bram Moolenaar2013-11-283-9/+10
| | | | | | Problem: "gUgn" cannot be repeeated. (Dimitar Dimitrov) Solution: Don't put "gn" in a different order in the redo buffer. Restore 'wrapscan' when the pattern isn't found. (Christian Wellenbrock)
* updated for version 7.4.109v7.4.109Bram Moolenaar2013-11-284-4/+15
| | | | | Problem: ColorScheme autocommand matches with the current buffer name. Solution: Match with the colorscheme name. (Christian Brabandt)
* updated for version 7.4.108v7.4.108Bram Moolenaar2013-11-284-18/+33
| | | | | Problem: "zG" and "zW" leave temp files around on MS-Windows. Solution: Delete the temp files when exiting. (Ken Takata)
* updated for version 7.4.107v7.4.107Bram Moolenaar2013-11-288-124/+179
| | | | | | Problem: Python: When vim.eval() encounters a Vim error, a try/catch in the Python code doesn't catch it. (Yggdroot Chen) Solution: Throw exceptions on errors in vim.eval(). (ZyX)
* updated for version 7.4.106v7.4.106Bram Moolenaar2013-11-282-2/+4
| | | | | Problem: Can't build with Ruby using Cygwin. Solution: Fix library name in makefile. (Steve Hall)
* updated for version 7.4.105v7.4.105Bram Moolenaar2013-11-282-0/+6
| | | | | Problem: Completing a tag pattern may give an error for invalid pattern. Solution: Suppress the error, just return no matches.
* updated for version 7.4.104v7.4.104Bram Moolenaar2013-11-282-2/+15
| | | | | Problem: ":help s/\_" reports an internal error. (John Beckett) Solution: Check for NUL and invalid character classes.
* Updated runtime files.Bram Moolenaar2013-11-2810-45/+97
|
* updated for version 7.4.103v7.4.103Bram Moolenaar2013-11-212-6/+14
| | | | | | Problem: Dos installer uses an old way to escape spaces in the diff command. Solution: Adjust the quoting to the new default shellxquote. (Ben Fritz)