summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch 7.4.1765v7.4.1765Bram Moolenaar2016-04-213-6/+13
| | | | | Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
* patch 7.4.1763v7.4.1763Bram Moolenaar2016-04-212-0/+4
| | | | | Problem: Coverity: useless assignment. Solution: Add #if 0.
* patch 7.4.1762v7.4.1762Bram Moolenaar2016-04-212-2/+3
| | | | | Problem: Coverity: useless assignments. Solution: Remove them.
* patch 7.4.1761v7.4.1761Bram Moolenaar2016-04-212-1/+3
| | | | | Problem: Coverity complains about ignoring return value. Solution: Add "(void)" to get rid of the warning.
* Updated runtime files.Bram Moolenaar2016-04-2122-391/+414
|
* patch 7.4.1760v7.4.1760Bram Moolenaar2016-04-202-0/+4
| | | | | Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott)
* patch 7.4.1759v7.4.1759Bram Moolenaar2016-04-205-5/+53
| | | | | | | Problem: When using feedkeys() in a timer the inserted characters are not used right away. Solution: Break the wait loop when characters have been added to typebuf. use this for testing CursorHoldI.
* patch 7.4.1758v7.4.1758Bram Moolenaar2016-04-203-3/+14
| | | | | | Problem: Triggering CursorHoldI when in CTRL-X mode causes problems. Solution: Do not trigger CursorHoldI in CTRL-X mode. Add "!" flag to feedkeys() (test with that didn't work though).
* patch 7.4.1757v7.4.1757Bram Moolenaar2016-04-202-5/+9
| | | | | | Problem: When using complete() it may set 'modified' even though nothing was inserted. Solution: Use Down/Up instead of Next/Previous match. (Shougo, closes #745)
* patch 7.4.1756v7.4.1756Bram Moolenaar2016-04-204-6/+42
| | | | | Problem: "dll" options are not expanded. Solution: Expand environment variables. (Ozaki Kiichi)
* patch 7.4.1755v7.4.1755Bram Moolenaar2016-04-203-2/+15
| | | | | | Problem: When using getreg() on a non-existing register a NULL list is returned. (Bjorn Linse) Solution: Allocate an empty list. Add a test.
* patch 7.4.1754v7.4.1754Bram Moolenaar2016-04-203-0/+45
| | | | | | | Problem: When 'filetype' was set and reloading a buffer which does not cause it to be set, the syntax isn't loaded. (KillTheMule) Solution: Remember whether the FileType event was fired and fire it if not. (Anton Lindqvist, closes #747)
* patch 7.4.1753v7.4.1753Bram Moolenaar2016-04-204-7/+20
| | | | | Problem: "noinsert" in 'completeopt' is sometimes ignored. Solution: Set the variables when the 'completeopt' was set. (Ozaki Kiichi)
* Add missing test file.Bram Moolenaar2016-04-181-0/+9
|
* patch 7.4.1752v7.4.1752Bram Moolenaar2016-04-183-11/+66
| | | | | Problem: When adding to the quickfix list the current position is reset. Solution: Do not reset the position when not needed. (Yegappan Lakshmanan)
* patch 7.4.1751v7.4.1751Bram Moolenaar2016-04-183-0/+11
| | | | | Problem: Crash when 'tagstack' is off. (Dominique Pelle) Solution: Fix it. (Hirohito Higashi)
* patch 7.4.1750v7.4.1750Bram Moolenaar2016-04-182-7/+11
| | | | | | Problem: When a buffer gets updated while in command line mode, the screen may be messed up. Solution: Postpone the redraw when the screen is scrolled.
* patch 7.4.1749v7.4.1749Bram Moolenaar2016-04-173-0/+12
| | | | | Problem: When using GTK 3.20 there are a few warnings. Solution: Use new functions when available. (Kazunobu Kuriyama)
* Add missing test file.Bram Moolenaar2016-04-161-0/+10
|
* patch 7.4.1748v7.4.1748Bram Moolenaar2016-04-163-1/+5
| | | | | | Problem: "gD" does not find match in first column of first line. (Gary Johnson) Solution: Accept match at the cursor.
* patch 7.4.1747v7.4.1747Bram Moolenaar2016-04-152-0/+9
| | | | | Problem: Coverity: missing check for NULL pointer. Solution: Check for out of memory.
* patch 7.4.1746v7.4.1746Bram Moolenaar2016-04-153-5/+26
| | | | | Problem: Memory leak in Perl. Solution: Decrement the reference count. Add a test. (Damien)
* patch 7.4.1745v7.4.1745Bram Moolenaar2016-04-153-0/+15
| | | | | | Problem: README file is not clear about where to get Vim. Solution: Add links to github, releases and the Windows installer. (Suggested by Christian Brabandt)
* patch 7.4.1744v7.4.1744Bram Moolenaar2016-04-152-2/+5
| | | | | Problem: Python: Converting a sequence may leak memory. Solution: Decrement a reference. (Nikolay Pavlov)
* patch 7.4.1743v7.4.1743Bram Moolenaar2016-04-142-1/+3
| | | | | Problem: Clang warns for uninitialzed variable. (Michael Jarvis) Solution: Initialize it.
* patch 7.4.1742v7.4.1742Bram Moolenaar2016-04-143-22/+27
| | | | | Problem: strgetchar() does not work correctly. Solution: use mb_cptr2len(). Add a test. (Naruhiko Nishino)
* patch 7.4.1741v7.4.1741Bram Moolenaar2016-04-142-6/+7
| | | | | Problem: Not testing utf-8 characters. Solution: Move the right asserts to the test_expr_utf8 test.
* patch 7.4.1740v7.4.1740Bram Moolenaar2016-04-149-220/+328
| | | | | | Problem: syn-cchar defined with matchadd() does not appear if there are no other syntax definitions which matches buffer text. Solution: Check for startcol. (Ozaki Kiichi, haya14busa, closes #757)
* patch 7.4.1739v7.4.1739Bram Moolenaar2016-04-143-19/+21
| | | | | | Problem: Messages test fails on MS-Windows. Solution: Adjust the asserts. Skip the "messages maintainer" line if not showing all messages.
* patch 7.4.1738v7.4.1738Bram Moolenaar2016-04-142-1/+4
| | | | | Problem: Count for ":messages" depends on number of lines. Solution: Add ADDR_OTHER address type.
* patch 7.4.1737v7.4.1737Bram Moolenaar2016-04-142-1/+3
| | | | | Problem: Argument marked as unused is used. Solution: Remove UNUSED.
* patch 7.4.1736v7.4.1736Bram Moolenaar2016-04-142-1/+2
| | | | | Problem: Unused variable. Solution: Remove it. (Yasuhiro Matsumoto)
* patch 7.4.1735v7.4.1735Bram Moolenaar2016-04-146-4/+91
| | | | | | | Problem: It is not possible to only see part of the message history. It is not possible to clear messages. Solution: Add a count to ":messages" and a clear argument. (Yasuhiro Matsumoto)
* patch 7.4.1734v7.4.1734Bram Moolenaar2016-04-144-23/+29
| | | | | Problem: Test fails when not using utf-8. Solution: Split test in regularand utf-8 part.
* patch 7.4.1733v7.4.1733Bram Moolenaar2016-04-145-4/+25
| | | | | | Problem: "make install" doesn't know about cross-compiling. (Christian Neukirchen) Solution: Add CROSS_COMPILING. (closes #740)
* patch 7.4.1732v7.4.1732Bram Moolenaar2016-04-144-0/+11
| | | | | | Problem: Folds may close when using autocomplete. (Anmol Sethi) Solution: Increment/decrement disable_fold. (Christian Brabandt, closes #643)
* patch 7.4.1731v7.4.1731Bram Moolenaar2016-04-1411-62/+923
| | | | | Problem: Python: turns partial into simple funcref. Solution: Use partials like partials. (Nikolai Pavlov, closes #734)
* patch 7.4.1730v7.4.1730Bram Moolenaar2016-04-143-0/+158
| | | | | Problem: It is not easy to get a character out of a string. Solution: Add strgetchar() and strcharpart().
* patch 7.4.1729v7.4.1729Bram Moolenaar2016-04-143-1/+110
| | | | | | | Problem: The Perl interface cannot use 'print' operator for writing directly in standard IO. Solution: Add a minimal implementation of PerlIO Layer feature and try to use it for STDOUT/STDERR. (Damien)
* patch 7.4.1728v7.4.1728Bram Moolenaar2016-04-144-294/+319
| | | | | | Problem: The help for functions require a space after the "(". Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito Higashi)
* patch 7.4.1727v7.4.1727Bram Moolenaar2016-04-1410-34/+112
| | | | | | Problem: Cannot detect a crash in tests when caused by garbagecollect(). Solution: Add garbagecollect_for_testing(). Do not free a job if is still useful.
* patch 7.4.1726v7.4.1726Bram Moolenaar2016-04-132-10/+17
| | | | | Problem: ANSI compiler complains about string length. Solution: Split long string in two parts. (Michael Jarvis)
* patch 7.4.1725v7.4.1725Bram Moolenaar2016-04-122-2/+4
| | | | | Problem: Compiler errors for non-ANSI compilers. Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis)
* Updated runtime files.Bram Moolenaar2016-04-1228-222/+629
|
* patch 7.4.1724v7.4.1724Bram Moolenaar2016-04-112-0/+8
| | | | | Problem: Tabline test fails in GUI. Solution: Remove 'e' from 'guioptions'.
* patch 7.4.1723v7.4.1723Bram Moolenaar2016-04-114-4/+50
| | | | | | Problem: When using try/catch in 'tabline' it is still considered an error and the tabline will be disabled. Solution: Check did_emsg instead of called_emsg. (haya14busa, closes #746)
* patch 7.4.1722v7.4.1722Bram Moolenaar2016-04-112-0/+4
| | | | | | Problem: Crash when calling garbagecollect() after starting a job. Solution: Set the copyID on job and channel. (Hirohito Higashi, Ozaki Kiichi)
* Updated runtime files.Bram Moolenaar2016-04-1011-399/+349
|
* patch 7.4.1721v7.4.1721Bram Moolenaar2016-04-085-188/+2
| | | | | Problem: The vimtbar files are unused. Solution: Remove them. (Ken Takata)
* patch 7.4.1720v7.4.1720Bram Moolenaar2016-04-082-6/+12
| | | | | Problem: Tests fail without the job feature. Solution: Skip tests when the job feature is not present.