summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-30patch 7.4.1804Bram Moolenaar
Problem: Can't use Vim as MANPAGER. Solution: Add manpager.vim. (Enno Nagel, closes #491)
2016-04-30patch 7.4.1803Bram Moolenaar
Problem: GTK3 doesn't handle menu separaters properly. Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
2016-04-30patch 7.4.1802Bram Moolenaar
Problem: Quickfix doesn't handle long lines well, they are split. Solution: Drop characters after a limit. (Anton Lindqvist)
2016-04-30patch 7.4.1801Bram Moolenaar
Problem: Make uninstall leaves file behind. Solution: Delete rgb.txt. (Kazunobu Kuriyama)
2016-04-30patch 7.4.1800Bram Moolenaar
Problem: Unnecessary #ifdef. Solution: Just use USE_24BIT. (Ken Takata)
2016-04-29patch 7.4.1799Bram Moolenaar
Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi)
2016-04-29patch 7.4.1798Bram Moolenaar
Problem: Still compiler warning for unused return value. (Charles Campbell) Solution: Assign to ignoredp.
2016-04-28patch 7.4.1797Bram Moolenaar
Problem: Warning from Windows 64 bit compiler. Solution: Change int to size_t. (Mike Williams)
2016-04-27patch 7.4.1796Bram Moolenaar
Problem: Colors are wrong on MS-Windows. (Christian Robinson) Solution: Use existing RGB macro if it exists. (Ken Takata)
2016-04-26patch 7.4.1795Bram Moolenaar
Problem: Compiler warning for redefining RGB. (John Marriott) Solution: Rename it to TORGB.
2016-04-26patch 7.4.1794Bram Moolenaar
Problem: Can't build on MS-Windows. Solution: Add missing declaration.
2016-04-26patch 7.4.1793Bram Moolenaar
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)
2016-04-26patch 7.4.1792Bram Moolenaar
Problem: Color name decoding is implemented several times. Solution: Move it to term.c. (Christian Brabandt)
2016-04-26patch 7.4.1791Bram Moolenaar
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.
2016-04-26patch 7.4.1790Bram Moolenaar
Problem: Leading white space in a job command matters. (Andrew Stewart) Solution: Skip leading white space.
2016-04-26patch 7.4.1789Bram Moolenaar
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.
2016-04-26patch 7.4.1788Bram Moolenaar
Problem: NSIS script is missing packages. Solution: Add the missing directories. (Ken Takata)
2016-04-26patch 7.4.1787Bram Moolenaar
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.
2016-04-24patch 7.4.1786Bram Moolenaar
Problem: Compiled-in colors do not match rgb.txt. Solution: Use the rgb.txt colors. (Kazunobu Kuriyama)
2016-04-24patch 7.4.1785Bram Moolenaar
Problem: Regexp test fails on windows. Solution: set 'isprint' to the right value for testing.
2016-04-24patch 7.4.1784Bram Moolenaar
Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure.
2016-04-24patch 7.4.1783Bram Moolenaar
Problem: The old regexp engine doesn't handle character classes correctly. (Manuel Ortega) Solution: Use regmbc() instead of regc(). Add a test.
2016-04-23patch 7.4.1782Bram Moolenaar
Problem: strcharpart() does not work properly with some multi-byte characters. Solution: Use mb_cptr2len() instead of mb_char2len(). (Hirohito Higashi)
2016-04-23patch 7.4.1781Bram Moolenaar
Problem: synIDattr() does not respect 'guicolors'. Solution: Change the conditition for the mode. (Christian Brabandt)
2016-04-23patch 7.4.1780Bram Moolenaar
Problem: Warnings reported by cppcheck. Solution: Fix the warnings. (Dominique Pelle)
2016-04-23patch 7.4.1779Bram Moolenaar
Problem: Using negative index in strcharpart(). (Yegappan Lakshmanan) Solution: Assume single byte when using a negative iindex.
2016-04-22patch 7.4.1778Bram Moolenaar
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)
2016-04-22patch 7.4.1777Bram Moolenaar
Problem: Newly added features can escape the sandbox. Solution: Add checks for restricted and secure. (Yasuhiro Matsumoto)
2016-04-22patch 7.4.1776Bram Moolenaar
Problem: Using wrong buffer length. Solution: use the right name. (Kazunobu Kuriyama)
2016-04-22patch 7.4.1775Bram Moolenaar
Problem: The rgb.txt file is not installed. Solution: Install the file. (Christian Brabandt)
2016-04-22patch 7.4.1774Bram Moolenaar
Problem: Cterm true color feature has warnings. Solution: Add type casts.
2016-04-22patch 7.4.1773Bram Moolenaar
Problem: Compiler warnings. (Dominique Pelle) Solution: Add UNUSED. Add type cast. Avoid a buffer overflow.
2016-04-22patch 7.4.1772Bram Moolenaar
Problem: Installation fails when $GTK_UPDATE_ICON_CACHE is empty. Solution: Add quotes. (Kazunobu Kuriyama)
2016-04-22patch 7.4.1771Bram Moolenaar
Problem: Warning for unused variable. Solution: Add #ifdef. (John Marriott)
2016-04-21patch 7.4.1770Bram Moolenaar
Problem: Cannot use true color in the terminal. Solution: Add the 'guicolors' option. (Nikolai Pavlov)
2016-04-21patch 7.4.1769Bram Moolenaar
Problem: No "closed", "errors" and "encoding" attribute on Python output. Solution: Add attributes and more tests. (Roland Puntaier, closes #622)
2016-04-21patch 7.4.1768Bram Moolenaar
Problem: Arguments of setqflist() are not checked properly. Solution: Add better checks, add a test. (Nikolai Pavlov, Hirohito Higashi, closes #661)
2016-04-21patch 7.4.1767Bram Moolenaar
Problem: When installing Vim on a GTK system the icon cache is not updated. Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama)
2016-04-21updated runtime files. Add avra syntax.Bram Moolenaar
2016-04-21patch 7.4.1766Bram Moolenaar
Problem: Building instructions for MS-Windows are outdated. Solution: Mention setting SDK_INCLUDE_DIR. (Ben Franklin, closes #771) Move outdated instructions further down.
2016-04-21patch 7.4.1765Bram Moolenaar
Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
2016-04-21patch 7.4.1763Bram Moolenaar
Problem: Coverity: useless assignment. Solution: Add #if 0.
2016-04-21patch 7.4.1762Bram Moolenaar
Problem: Coverity: useless assignments. Solution: Remove them.
2016-04-21patch 7.4.1761Bram Moolenaar
Problem: Coverity complains about ignoring return value. Solution: Add "(void)" to get rid of the warning.
2016-04-21Updated runtime files.Bram Moolenaar
2016-04-20patch 7.4.1760Bram Moolenaar
Problem: Compiler warning for unused variable. Solution: Add #ifdef. (John Marriott)
2016-04-20patch 7.4.1759Bram Moolenaar
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.
2016-04-20patch 7.4.1758Bram Moolenaar
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).
2016-04-20patch 7.4.1757Bram Moolenaar
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)
2016-04-20patch 7.4.1756Bram Moolenaar
Problem: "dll" options are not expanded. Solution: Expand environment variables. (Ozaki Kiichi)