1
0
forked from aniani/vim

Commit Graph

  • 9b4ebc692d patch 7.4.1813 Problem: Memory access error when running test_quickfix. Solution: Allocate one more byte. (Yegappan Lakshmanan) v7.4.1813 Bram Moolenaar 2016-05-01 13:28:38 +02:00
  • 187147aedd patch 7.4.1812 Problem: Failure on startup with Athena and Motif. Solution: Check for INVALCOLOR. (Kazunobu Kuriyama) v7.4.1812 Bram Moolenaar 2016-05-01 13:09:57 +02:00
  • 3266c85a44 patch 7.4.1811 Problem: Netbeans channel gets garbage collected. Solution: Set reference in nb_channel. v7.4.1811 Bram Moolenaar 2016-04-30 18:07:05 +02:00
  • 715d285d79 patch 7.4.1810 Problem: Sending DETACH after a channel was closed isn't useful. Solution: Only add DETACH for a netbeans channel. v7.4.1810 Bram Moolenaar 2016-04-30 17:06:31 +02:00
  • 868cfc19bb patch 7.4.1809 Problem: Using wrong short option name for 'termguicolors'. Solution: Use the option name. v7.4.1809 Bram Moolenaar 2016-04-30 16:49:58 +02:00
  • 8a24b794b8 patch 7.4.1808 Problem: Using wrong feature name to check for 'termguicolors'. Solution: Use the right feature name. (Ken Takata) v7.4.1808 Bram Moolenaar 2016-04-30 16:13:10 +02:00
  • d75263c020 patch 7.4.1807 Problem: Test_out_close_cb sometimes fails. Solution: Always write DETACH to out, not err. v7.4.1807 Bram Moolenaar 2016-04-30 16:07:23 +02:00
  • 8e3d1b6326 patch 7.4.1806 Problem: 'termguicolors' option missing from the options window. Solution: Add the entry. v7.4.1806 Bram Moolenaar 2016-04-30 15:17:19 +02:00
  • 0648142700 Update runtime files. Bram Moolenaar 2016-04-30 15:13:38 +02:00
  • 4cc39a527f patch 7.4.1805 Problem: Running tests in shadow dir fails. Solution: Link the samples directory v7.4.1805 Bram Moolenaar 2016-04-30 15:08:27 +02:00
  • b20545f2a7 patch 7.4.1804 Problem: Can't use Vim as MANPAGER. Solution: Add manpager.vim. (Enno Nagel, closes #491) v7.4.1804 Bram Moolenaar 2016-04-30 14:15:54 +02:00
  • 0b6cf69c03 patch 7.4.1803 Problem: GTK3 doesn't handle menu separaters properly. Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama) v7.4.1803 Bram Moolenaar 2016-04-30 13:26:14 +02:00
  • 6be8c8e165 patch 7.4.1802 Problem: Quickfix doesn't handle long lines well, they are split. Solution: Drop characters after a limit. (Anton Lindqvist) v7.4.1802 Bram Moolenaar 2016-04-30 13:17:09 +02:00
  • 113ce08456 patch 7.4.1801 Problem: Make uninstall leaves file behind. Solution: Delete rgb.txt. (Kazunobu Kuriyama) v7.4.1801 Bram Moolenaar 2016-04-30 12:32:52 +02:00
  • 631225627d patch 7.4.1800 Problem: Unnecessary #ifdef. Solution: Just use USE_24BIT. (Ken Takata) v7.4.1800 Bram Moolenaar 2016-04-30 12:28:15 +02:00
  • 61be73bb0f patch 7.4.1799 Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi) v7.4.1799 Bram Moolenaar 2016-04-29 22:59:22 +02:00
  • bb82762907 patch 7.4.1798 Problem: Still compiler warning for unused return value. (Charles Campbell) Solution: Assign to ignoredp. v7.4.1798 Bram Moolenaar 2016-04-29 22:33:27 +02:00
  • c61348e83f patch 7.4.1797 Problem: Warning from Windows 64 bit compiler. Solution: Change int to size_t. (Mike Williams) v7.4.1797 Bram Moolenaar 2016-04-28 22:20:03 +02:00
  • 283ee8b3a0 patch 7.4.1796 Problem: Colors are wrong on MS-Windows. (Christian Robinson) Solution: Use existing RGB macro if it exists. (Ken Takata) v7.4.1796 Bram Moolenaar 2016-04-27 20:36:31 +02:00
  • 5487544fa5 patch 7.4.1795 Problem: Compiler warning for redefining RGB. (John Marriott) Solution: Rename it to TORGB. v7.4.1795 Bram Moolenaar 2016-04-26 22:33:17 +02:00
  • c285fe7c3f patch 7.4.1794 Problem: Can't build on MS-Windows. Solution: Add missing declaration. v7.4.1794 Bram Moolenaar 2016-04-26 21:51:48 +02:00
  • e8aee7dcf9 patch 7.4.1793 Problem: Some character classes may differ between systems. On OS/X the regexp test fails. Solution: Make this less dependent on the system. (idea by Kazunobu Kuriyama) v7.4.1793 Bram Moolenaar 2016-04-26 21:39:13 +02:00
  • ab3022196e patch 7.4.1792 Problem: Color name decoding is implemented several times. Solution: Move it to term.c. (Christian Brabandt) v7.4.1792 Bram Moolenaar 2016-04-26 20:59:29 +02:00
  • 674127e180 patch 7.4.1791 Problem: Channel could be garbage collected too early. Solution: Don't free a channel or remove it from a job when it is still useful. v7.4.1791 Bram Moolenaar 2016-04-26 20:30:07 +02:00
  • 6231cb8b5b patch 7.4.1790 Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space. v7.4.1790 Bram Moolenaar 2016-04-26 19:42:42 +02:00
  • 437905c25d patch 7.4.1789 Problem: Cannot use ch_read() in the close callback. Solution: Do not discard the channel if there is readahead. Do not discard readahead if there is a close callback. v7.4.1789 Bram Moolenaar 2016-04-26 19:01:05 +02:00
  • c7baa43fdb patch 7.4.1788 Problem: NSIS script is missing packages. Solution: Add the missing directories. (Ken Takata) v7.4.1788 Bram Moolenaar 2016-04-26 17:34:44 +02:00
  • b2658a1ab0 patch 7.4.1787 Problem: When a job ends the close callback is invoked before other callbacks. On Windows the close callback is not called. Solution: First invoke out/err callbacks before the close callback. Make the close callback work on Windows. v7.4.1787 Bram Moolenaar 2016-04-26 17:16:24 +02:00
  • d10abe5201 patch 7.4.1786 Problem: Compiled-in colors do not match rgb.txt. Solution: Use the rgb.txt colors. (Kazunobu Kuriyama) v7.4.1786 Bram Moolenaar 2016-04-24 15:41:33 +02:00
  • 490465bda6 patch 7.4.1785 Problem: Regexp test fails on windows. Solution: set 'isprint' to the right value for testing. v7.4.1785 Bram Moolenaar 2016-04-24 15:11:02 +02:00
  • 8e9eb3a6a1 patch 7.4.1784 Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure. v7.4.1784 Bram Moolenaar 2016-04-24 15:00:11 +02:00
  • af98a49dd0 patch 7.4.1783 Problem: The old regexp engine doesn't handle character classes correctly. (Manuel Ortega) Solution: Use regmbc() instead of regc(). Add a test. v7.4.1783 Bram Moolenaar 2016-04-24 14:40:12 +02:00
  • fca6600305 patch 7.4.1782 Problem: strcharpart() does not work properly with some multi-byte characters. Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi) v7.4.1782 Bram Moolenaar 2016-04-23 15:30:09 +02:00
  • da5b3dcf06 patch 7.4.1781 Problem: synIDattr() does not respect 'guicolors'. Solution: Change the conditition for the mode. (Christian Brabandt) v7.4.1781 Bram Moolenaar 2016-04-23 15:19:02 +02:00
  • dc633cf827 patch 7.4.1780 Problem: Warnings reported by cppcheck. Solution: Fix the warnings. (Dominique Pelle) v7.4.1780 Bram Moolenaar 2016-04-23 14:33:19 +02:00
  • 73dfe917ba patch 7.4.1779 Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan) Solution: Assume single byte when using a negative iindex. v7.4.1779 Bram Moolenaar 2016-04-23 13:54:48 +02:00
  • b2fa54a840 patch 7.4.1778 Problem: When using the term truecolor feature, the t_8f and t_8b termcap options are not set by default. Solution: Move the values to before BT_EXTRA_KEYS. (Christian Brabandt) v7.4.1778 Bram Moolenaar 2016-04-22 21:11:09 +02:00
  • 3849992b16 patch 7.4.1777 Problem: Newly added features can escape the sandbox. Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto) v7.4.1777 Bram Moolenaar 2016-04-22 20:46:52 +02:00
  • a1c487eef7 patch 7.4.1776 Problem: Using wrong buffer length. Solution: use the right name. (Kazunobu Kuriyama) v7.4.1776 Bram Moolenaar 2016-04-22 20:20:19 +02:00
  • 763b684373 patch 7.4.1775 Problem: The rgb.txt file is not installed. Solution: Install the file. (Christian Brabandt) v7.4.1775 Bram Moolenaar 2016-04-22 12:24:52 +02:00
  • 902647d2df patch 7.4.1774 Problem: Cterm true color feature has warnings. Solution: Add type casts. v7.4.1774 Bram Moolenaar 2016-04-22 11:49:06 +02:00
  • 380130f1e1 patch 7.4.1773 Problem: Compiler warnings. (Dominique Pelle) Solution: Add UNUSED. Add type cast. Avoid a buffer overflow. v7.4.1773 Bram Moolenaar 2016-04-22 11:24:43 +02:00
  • 54a38415ca patch 7.4.1772 Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. Solution: Add quotes. (Kazunobu Kuriyama) v7.4.1772 Bram Moolenaar 2016-04-22 10:14:07 +02:00
  • 21decdd3e6 patch 7.4.1771 Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott) v7.4.1771 Bram Moolenaar 2016-04-22 10:00:58 +02:00
  • 8a633e3427 patch 7.4.1770 Problem: Cannot use true color in the terminal. Solution: Add the 'guicolors' option. (Nikolai Pavlov) v7.4.1770 Bram Moolenaar 2016-04-21 21:10:14 +02:00
  • 6d4431e7b6 patch 7.4.1769 Problem: No "closed", "errors" and "encoding" attribute on Python output. Solution: Add attributes and more tests. (Roland Puntaier, closes #622) v7.4.1769 Bram Moolenaar 2016-04-21 20:00:56 +02:00
  • d106e5ba7f patch 7.4.1768 Problem: Arguments of setqflist() are not checked properly. Solution: Add better checks, add a test. (Nikolai Pavlov, Hirohito Higashi, closes #661) v7.4.1768 Bram Moolenaar 2016-04-21 19:38:07 +02:00
  • 4adfaabfe7 patch 7.4.1767 Problem: When installing Vim on a GTK system the icon cache is not updated. Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama) v7.4.1767 Bram Moolenaar 2016-04-21 18:20:11 +02:00
  • 0c1ff16b54 updated runtime files. Add avra syntax. Bram Moolenaar 2016-04-21 18:01:28 +02:00
  • 02cfac85b4 patch 7.4.1766 Problem: Building instructions for MS-Windows are outdated. Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes #771) Move outdated instructions further down. v7.4.1766 Bram Moolenaar 2016-04-21 14:34:58 +02:00
  • 4694a17d1e patch 7.4.1765 Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson) v7.4.1765 Bram Moolenaar 2016-04-21 14:05:23 +02:00
  • ba53435144 patch 7.4.1763 Problem: Coverity: useless assignment. Solution: Add #if 0. v7.4.1763 Bram Moolenaar 2016-04-21 09:20:26 +02:00
  • 268a06ce90 patch 7.4.1762 Problem: Coverity: useless assignments. Solution: Remove them. v7.4.1762 Bram Moolenaar 2016-04-21 09:07:01 +02:00
  • 8ed43916db patch 7.4.1761 Problem: Coverity complains about ignoring return value. Solution: Add "(void)" to get rid of the warning. v7.4.1761 Bram Moolenaar 2016-04-21 08:56:12 +02:00
  • aa3b15dbeb Updated runtime files. Bram Moolenaar 2016-04-21 08:53:19 +02:00
  • 4445f7ee70 patch 7.4.1760 Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott) v7.4.1760 Bram Moolenaar 2016-04-20 20:55:56 +02:00
  • 40b1b5443c patch 7.4.1759 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. v7.4.1759 Bram Moolenaar 2016-04-20 20:18:23 +02:00
  • 245c41070c patch 7.4.1758 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). v7.4.1758 Bram Moolenaar 2016-04-20 17:37:41 +02:00
  • 8e42ae5069 patch 7.4.1757 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) v7.4.1757 Bram Moolenaar 2016-04-20 16:39:19 +02:00
  • a6e4250142 patch 7.4.1756 Problem: "dll" options are not expanded. Solution: Expand environment variables. (Ozaki Kiichi) v7.4.1756 Bram Moolenaar 2016-04-20 16:19:52 +02:00
  • 517ffbee0d patch 7.4.1755 Problem: When using getreg() on a non-existing register a NULL list is returned. (Bjorn Linse) Solution: Allocate an empty list. Add a test. v7.4.1755 Bram Moolenaar 2016-04-20 14:59:29 +02:00
  • c3691332f7 patch 7.4.1754 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) v7.4.1754 Bram Moolenaar 2016-04-20 12:49:49 +02:00
  • c020042083 patch 7.4.1753 Problem: "noinsert" in 'completeopt' is sometimes ignored. Solution: Set the variables when the 'completeopt' was set. (Ozaki Kiichi) v7.4.1753 Bram Moolenaar 2016-04-20 12:02:02 +02:00
  • 8d8aa0a367 Add missing test file. Bram Moolenaar 2016-04-18 20:21:12 +02:00
  • c1808d5822 patch 7.4.1752 Problem: When adding to the quickfix list the current position is reset. Solution: Do not reset the position when not needed. (Yegappan Lakshmanan) v7.4.1752 Bram Moolenaar 2016-04-18 20:04:00 +02:00
  • def5abe0a2 patch 7.4.1751 Problem: Crash when 'tagstack' is off. (Dominique Pelle) Solution: Fix it. (Hirohito Higashi) v7.4.1751 Bram Moolenaar 2016-04-18 19:46:15 +02:00
  • 7f7c3325d3 patch 7.4.1750 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. v7.4.1750 Bram Moolenaar 2016-04-18 19:27:24 +02:00
  • 30e12d259e patch 7.4.1749 Problem: When using GTK 3.20 there are a few warnings. Solution: Use new functions when available. (Kazunobu Kuriyama) v7.4.1749 Bram Moolenaar 2016-04-17 20:49:53 +02:00
  • f9660b59b2 Add missing test file. Bram Moolenaar 2016-04-16 22:19:15 +02:00
  • 1538fc34fa patch 7.4.1748 Problem: "gD" does not find match in first column of first line. (Gary Johnson) Solution: Accept match at the cursor. v7.4.1748 Bram Moolenaar 2016-04-16 09:13:34 +02:00
  • fe4b186406 patch 7.4.1747 Problem: Coverity: missing check for NULL pointer. Solution: Check for out of memory. v7.4.1747 Bram Moolenaar 2016-04-15 21:47:54 +02:00
  • 95509e18f8 patch 7.4.1746 Problem: Memory leak in Perl. Solution: Decrement the reference count. Add a test. (Damien) v7.4.1746 Bram Moolenaar 2016-04-15 21:16:11 +02:00
  • 5d98c9d932 patch 7.4.1745 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) v7.4.1745 Bram Moolenaar 2016-04-15 20:54:52 +02:00
  • 6621004289 patch 7.4.1744 Problem: Python: Converting a sequence may leak memory. Solution: Decrement a reference. (Nikolay Pavlov) v7.4.1744 Bram Moolenaar 2016-04-15 20:40:41 +02:00
  • 75be2339d8 patch 7.4.1743 Problem: Clang warns for uninitialzed variable. (Michael Jarvis) Solution: Initialize it. v7.4.1743 Bram Moolenaar 2016-04-14 23:10:40 +02:00
  • 5d18e0eca5 patch 7.4.1742 Problem: strgetchar() does not work correctly. Solution: use mb_cptr2len(). Add a test. (Naruhiko Nishino) v7.4.1742 Bram Moolenaar 2016-04-14 22:54:24 +02:00
  • b22bd46b96 patch 7.4.1741 Problem: Not testing utf-8 characters. Solution: Move the right asserts to the test_expr_utf8 test. v7.4.1741 Bram Moolenaar 2016-04-14 22:52:50 +02:00
  • 4d58502202 patch 7.4.1740 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) v7.4.1740 Bram Moolenaar 2016-04-14 19:50:22 +02:00
  • bea1ede1c5 patch 7.4.1739 Problem: Messages test fails on MS-Windows. Solution: Adjust the asserts. Skip the "messages maintainer" line if not showing all messages. v7.4.1739 Bram Moolenaar 2016-04-14 19:44:36 +02:00
  • 5d91646599 patch 7.4.1738 Problem: Count for ":messages" depends on number of lines. Solution: Add ADDR_OTHER address type. v7.4.1738 Bram Moolenaar 2016-04-14 18:42:47 +02:00
  • 52196b2dbe patch 7.4.1737 Problem: Argument marked as unused is used. Solution: Remove UNUSED. v7.4.1737 Bram Moolenaar 2016-04-14 17:52:41 +02:00
  • baa9fcaf40 patch 7.4.1736 Problem: Unused variable. Solution: Remove it. (Yasuhiro Matsumoto) v7.4.1736 Bram Moolenaar 2016-04-14 17:40:56 +02:00
  • 451f849fd6 patch 7.4.1735 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) v7.4.1735 Bram Moolenaar 2016-04-14 17:16:22 +02:00
  • 0f518a8f4d patch 7.4.1734 Problem: Test fails when not using utf-8. Solution: Split test in regularand utf-8 part. v7.4.1734 Bram Moolenaar 2016-04-14 16:57:10 +02:00
  • 839e954aaa patch 7.4.1733 Problem: "make install" doesn't know about cross-compiling. (Christian Neukirchen) Solution: Add CROSS_COMPILING. (closes #740) v7.4.1733 Bram Moolenaar 2016-04-14 16:46:02 +02:00
  • 429fcfbf9a patch 7.4.1732 Problem: Folds may close when using autocomplete. (Anmol Sethi) Solution: Increment/decrement disable_fold. (Christian Brabandt, closes #643) v7.4.1732 Bram Moolenaar 2016-04-14 16:22:04 +02:00
  • 8110a091bc patch 7.4.1731 Problem: Python: turns partial into simple funcref. Solution: Use partials like partials. (Nikolai Pavlov, closes #734) v7.4.1731 Bram Moolenaar 2016-04-14 15:56:09 +02:00
  • 58de0e2dcc patch 7.4.1730 Problem: It is not easy to get a character out of a string. Solution: Add strgetchar() and strcharpart(). v7.4.1730 Bram Moolenaar 2016-04-14 15:13:46 +02:00
  • 6244a0fc29 patch 7.4.1729 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) v7.4.1729 Bram Moolenaar 2016-04-14 14:09:25 +02:00
  • 81edd171a9 patch 7.4.1728 Problem: The help for functions require a space after the "(". Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito Higashi) v7.4.1728 Bram Moolenaar 2016-04-14 13:51:37 +02:00
  • ebf7dfa6f1 patch 7.4.1727 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. v7.4.1727 Bram Moolenaar 2016-04-14 12:46:51 +02:00
  • 700eefe5a4 patch 7.4.1726 Problem: ANSI compiler complains about string length. Solution: Split long string in two parts. (Michael Jarvis) v7.4.1726 Bram Moolenaar 2016-04-13 21:14:37 +02:00
  • 3780bb923a patch 7.4.1725 Problem: Compiler errors for non-ANSI compilers. Solution: Remove // comment. Remove comma at end of enum. (Michael Jarvis) v7.4.1725 Bram Moolenaar 2016-04-12 22:18:53 +02:00
  • 03413f4416 Updated runtime files. Bram Moolenaar 2016-04-12 21:07:15 +02:00
  • 73cd8fb3e8 patch 7.4.1724 Problem: Tabline test fails in GUI. Solution: Remove 'e' from 'guioptions'. v7.4.1724 Bram Moolenaar 2016-04-11 22:49:03 +02:00
  • f73d3bc253 patch 7.4.1723 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) v7.4.1723 Bram Moolenaar 2016-04-11 21:55:15 +02:00
  • 0239acb11f patch 7.4.1722 Problem: Crash when calling garbagecollect() after starting a job. Solution: Set the copyID on job and channel. (Hirohito Higashi, Ozaki Kiichi) v7.4.1722 Bram Moolenaar 2016-04-11 21:02:54 +02:00
  • 939a1abe93 Updated runtime files. Bram Moolenaar 2016-04-10 01:31:25 +02:00
  • a4d13de836 patch 7.4.1721 Problem: The vimtbar files are unused. Solution: Remove them. (Ken Takata) v7.4.1721 Bram Moolenaar 2016-04-08 22:17:04 +02:00
  • 9e4043757c patch 7.4.1720 Problem: Tests fail without the job feature. Solution: Skip tests when the job feature is not present. v7.4.1720 Bram Moolenaar 2016-04-08 17:25:19 +02:00