summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2016-05-29patch 7.4.1857v7.4.1857Bram Moolenaar
Problem: When a channel appends to a buffer that is 'nomodifiable' there is an error but appending is done anyway. Solution: Add the 'modifiable' option. Refuse to write to a 'nomodifiable' when the value is 1.
2016-05-25patch 7.4.1844v7.4.1844Bram Moolenaar
Problem: Using old function name in comment. More functions should start with test_. Solution: Rename function in comment. (Higashi Higashi) Rename disable_char_avail_for_testing() to test_disable_char_avail(). And alloc_fail() to test_alloc_fail().
2016-05-25patch 7.4.1843v7.4.1843Bram Moolenaar
Problem: Tests involving Python are flaky. Solution: Set the pt_auto field. Add tests. (Nikolai Pavlov)
2016-05-24patch 7.4.1842v7.4.1842Bram Moolenaar
Problem: get() works for Partial but not for Funcref. Solution: Accept Funcref. Also return the function itself. (Nikolai Pavlov)
2016-05-24Update runtime files.Bram Moolenaar
2016-05-24patch 7.4.1839v7.4.1839Bram Moolenaar
Problem: Cannot get the items stored in a partial. Solution: Support using get() on a partial.
2016-05-24patch 7.4.1838v7.4.1838Bram Moolenaar
Problem: Functions specifically for testing do not sort together. Solution: Rename garbagecollect_for_testing() to test_garbagecollect_now(). Add test_null_list(), test_null_dict(), etc.
2016-05-24patch 7.4.1836v7.4.1836Bram Moolenaar
Problem: When using a partial on a dictionary it always gets bound to that dictionary. Solution: Make a difference between binding a function to a dictionary explicitly or automatically.
2016-05-24patch 7.4.1833v7.4.1833Bram Moolenaar
Problem: Cannot use an Ex command for 'keywordprg'. Solution: Accept an Ex command. (Nelo-Thara Wallus)
2016-05-20Updated runtime files.Bram Moolenaar
2016-05-08Updated runtime files.Bram Moolenaar
2016-04-30patch 7.4.1809v7.4.1809Bram Moolenaar
Problem: Using wrong short option name for 'termguicolors'. Solution: Use the option name.
2016-04-30patch 7.4.1808v7.4.1808Bram Moolenaar
Problem: Using wrong feature name to check for 'termguicolors'. Solution: Use the right feature name. (Ken Takata)
2016-04-30patch 7.4.1806v7.4.1806Bram Moolenaar
Problem: 'termguicolors' option missing from the options window. Solution: Add the entry.
2016-04-30Update runtime files.Bram Moolenaar
2016-04-30patch 7.4.1804v7.4.1804Bram Moolenaar
Problem: Can't use Vim as MANPAGER. Solution: Add manpager.vim. (Enno Nagel, closes #491)
2016-04-29patch 7.4.1799v7.4.1799Bram Moolenaar
Problem: 'guicolors' is a confusing option name. Solution: Use 'termguicolors' instead. (Hirohito Higashi)
2016-04-21patch 7.4.1770v7.4.1770Bram Moolenaar
Problem: Cannot use true color in the terminal. Solution: Add the 'guicolors' option. (Nikolai Pavlov)
2016-04-21updated runtime files. Add avra syntax.Bram Moolenaar
2016-04-21patch 7.4.1765v7.4.1765Bram Moolenaar
Problem: Undo options are not together in the options window. Solution: Put them together. (Gary Johnson)
2016-04-21Updated runtime files.Bram Moolenaar
2016-04-14patch 7.4.1735v7.4.1735Bram Moolenaar
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)
2016-04-14patch 7.4.1731v7.4.1731Bram Moolenaar
Problem: Python: turns partial into simple funcref. Solution: Use partials like partials. (Nikolai Pavlov, closes #734)
2016-04-14patch 7.4.1728v7.4.1728Bram Moolenaar
Problem: The help for functions require a space after the "(". Solution: Make CTRL-] on a function name ignore the arguments. (Hirohito Higashi)
2016-04-14patch 7.4.1727v7.4.1727Bram Moolenaar
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.
2016-04-12Updated runtime files.Bram Moolenaar
2016-04-10Updated runtime files.Bram Moolenaar
2016-04-05patch 7.4.1714v7.4.1714Bram Moolenaar
Problem: Non-GUI specific settings in the gvimrc_example file. Solution: Move some settings to the vimrc_example file. Remove setting 'hlsearch' again. (suggested by Hirohito Higashi)
2016-04-03patch 7.4.1705v7.4.1705Bram Moolenaar
Problem: The 'guifont' option does not allow for a quality setting. Solution: Add the "q" item, supported on MS-Windows. (Yasuhiro Matsumoto)
2016-04-03patch 7.4.1703v7.4.1703Bram Moolenaar
Problem: Can't assert for not equal and not matching. Solution: Add assert_notmatch() and assert_notequal().
2016-03-29Updated runtime files.Bram Moolenaar
2016-03-29patch 7.4.1685v7.4.1685Bram Moolenaar
Problem: There is no easy way to get all the information about a match. Solution: Add matchstrpos(). (Ozaki Kiichi)
2016-03-28patch 7.4.1677v7.4.1677Bram Moolenaar
Problem: A reference to the removed file_select plugin remains. Solution: Remove it.
2016-03-28patch 7.4.1676v7.4.1676Bram Moolenaar
Problem: The shellmenu plugin has to be copied or sourced to be used. Solution: Turn it into a package.
2016-03-28patch 7.4.1675v7.4.1675Bram Moolenaar
Problem: The swapmous plugin has to be copied or sourced to be used. Solution: Turn it into the swapmouse package.
2016-03-28patch 7.4.1674v7.4.1674Bram Moolenaar
Problem: The editexisting plugin has to be copied or sourced to be used. Solution: Turn it into a package.
2016-03-28patch 7.4.1673v7.4.1673Bram Moolenaar
Problem: The justify plugin has to be copied or sourced to be used. Solution: Turn it into a package.
2016-03-28patch 7.4.1672v7.4.1672Bram Moolenaar
Problem: The Dvorak support is a bit difficult to install. Solution: Turn it into an optional package.
2016-03-27patch 7.4.1663v7.4.1663Bram Moolenaar
Problem: In tests it's often useful to check if a pattern matches. Solution: Add assert_match().
2016-03-26Updated runtime files.Bram Moolenaar
2016-03-26patch 7.4.1658v7.4.1658Bram Moolenaar
Problem: A plugin does not know when VimEnter autocommands were already triggered. Solution: Add the v:vim_did_enter variable.
2016-03-25patch 7.4.1653v7.4.1653Bram Moolenaar
Problem: Users who loaded matchit.vim manually have to change their startup. (Gary Johnson) Solution: Add a file in the old location that loads the package.
2016-03-25patch 7.4.1649v7.4.1649Bram Moolenaar
Problem: The matchit plugin needs to be copied to be used. Solution: Put the matchit plugin in an optional package.
2016-03-24patch 7.4.1642v7.4.1642Bram Moolenaar
Problem: Handling emoji characters as full width has problems with backwards compatibility. Solution: Only put characters in the 1f000 range in the emoji table.
2016-03-23patch 7.4.1640v7.4.1640Bram Moolenaar
Problem: Crash when an autocommand changes a quickfix list. (Dominique) Solution: Check wether an entry is still valid. (Yegappan Lakshmanan, Hirohito Higashi)
2016-03-21patch 7.4.1629v7.4.1629Bram Moolenaar
Problem: Handling emoji characters as full width has problems with backwards compatibility. Solution: Remove ambiguous and double width characters from the emoji table. Use a separate table for the character class. (partly by Yasuhiro Matsumoto)
2016-03-20Updated runtime files.Bram Moolenaar
2016-03-20patch 7.4.1624v7.4.1624Bram Moolenaar
Problem: Can't get info about a channel. Solution: Add ch_info().
2016-03-19patch 7.4.1604v7.4.1604Bram Moolenaar
Problem: Although emoji characters are ambiguous width, best is to treat them as full width. Solution: Update the Unicode character tables. Add the 'emoji' options. (Yasuhiro Matsumoto)
2016-03-15patch 7.4.1578v7.4.1578Bram Moolenaar
Problem: There is no way to invoke a function later or periodically. Solution: Add timer support.