summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2019-08-18patch 8.1.1886: command line expansion code is spread outv8.1.1886Bram Moolenaar
Problem: Command line expansion code is spread out. Solution: Move the code to cmdexpand.c. (Yegappan Lakshmanan, closes #4831)
2019-08-18patch 8.1.1885: comments in libvterm are inconsistentv8.1.1885Bram Moolenaar
Problem: Comments in libvterm are inconsistent. Solution: Use // comments. Als update the table of combining characters.
2019-08-18patch 8.1.1884: cannot use mouse scroll wheel in popup in Insert modev8.1.1884Bram Moolenaar
Problem: Cannot use mouse scroll wheel in popup in Insert mode. Mouse clicks in popup close the popup menu. Solution: Check if the mouse is in a popup window. Do not let mouse events close the popup menu. (closes #4544)
2019-08-18patch 8.1.1883: options test failsv8.1.1883Bram Moolenaar
Problem: Options test fails. Solution: Add entry for 'completepopup'.
2019-08-18patch 8.1.1882: cannot specify properties of the info popup windowv8.1.1882Bram Moolenaar
Problem: Cannot specify properties of the info popup window. Solution: Add the 'completepopup' option. Default to PmenuSel highlight.
2019-08-18patch 8.1.1881: popup window test fails in some configurationsv8.1.1881Bram Moolenaar
Problem: Popup window test fails in some configurations. Solution: Check that screendumps can be made.
2019-08-18patch 8.1.1880: cannot show extra info for completion in a popup windowv8.1.1880Bram Moolenaar
Problem: Cannot show extra info for completion in a popup window. Solution: Add the "popup" entry in 'completeopt'.
2019-08-17patch 8.1.1879: more functions can be used as methodsv8.1.1879Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make float functions usable as a method.
2019-08-17patch 8.1.1878: negative float before method not parsed correctlyv8.1.1878Bram Moolenaar
Problem: Negative float before method not parsed correctly. Solution: Apply "!" and "-" in front of expression before using ->.
2019-08-17patch 8.1.1877: graduated features scatteredv8.1.1877Bram Moolenaar
Problem: Graduated features scattered. Solution: Put graduated and obsolete features together.
2019-08-17patch 8.1.1876: proto file missing from distributionv8.1.1876Bram Moolenaar
Problem: proto file missing from distribution Solution: Add the file.
2019-08-17patch 8.1.1875: cannot get size and position of the popup menuv8.1.1875Bram Moolenaar
Problem: Cannot get size and position of the popup menu. Solution: Add pum_getpos(). (Ben Jackson, closes #4827)
2019-08-17patch 8.1.1874: modeless selection in popup window overlaps scrollbarv8.1.1874Bram Moolenaar
Problem: Modeless selection in popup window overlaps scrollbar. Solution: Subtract scrollbar from max_col. (closes #4773)
2019-08-17patch 8.1.1873: cannot build tiny versionv8.1.1873Bram Moolenaar
Problem: Cannot build tiny version. Solution: Remove #ifdef for is_autocmd_blocked().
2019-08-17patch 8.1.1872: when Vim exits because of a signal, VimLeave is not triggeredv8.1.1872Bram Moolenaar
Problem: When Vim exits because of a signal, VimLeave is not triggered. (Daniel Hahler) Solution: Unblock autocommands when triggering VimLeave. (closes #4818)
2019-08-17patch 8.1.1871: modeless selection in GUI still not correctv8.1.1871Bram Moolenaar
Problem: Modeless selection in GUI still not correct. Solution: Fix max_col.
2019-08-17patch 8.1.1870: using :pedit from a help file sets help filetypev8.1.1870Bram Moolenaar
Problem: Using :pedit from a help file sets the preview window to help filetype. (Wang Shidong) Solution: Do not set "keep_help_flag". (closes #3536)
2019-08-17patch 8.1.1869: code for the argument list is spread outv8.1.1869Bram Moolenaar
Problem: Code for the argument list is spread out. Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan, closes #4819)
2019-08-17patch 8.1.1868: multi-byte chars in 'listchars' fail with 'linebreak' setv8.1.1868Bram Moolenaar
Problem: Multibyte characters in 'listchars' don't work correctly if 'linebreak' is also enabled. (Martin Tournoij) Solution: Make it work correctly. (Christian Brabandt, closes #4822, closes #4812)
2019-08-17patch 8.1.1867: still a timer test that is flaky on Macv8.1.1867Bram Moolenaar
Problem: Still a timer test that is flaky on Mac. Solution: Loop with a sleep instead of one fixed sleep.
2019-08-16patch 8.1.1866: modeless selection in GUI does not work properlyv8.1.1866Bram Moolenaar
Problem: Modeless selection in GUI does not work properly. Solution: Avoid going beyond the end of the line. (closes #4783)
2019-08-16patch 8.1.1865: spellrare and spellrepall in the wrong orderv8.1.1865Bram Moolenaar
Problem: Spellrare and spellrepall in the wrong order. Solution: Put spellrare below spellrepall. (closes #4820)
2019-08-16patch 8.1.1864: still a timer test that is flaky on Macv8.1.1864Bram Moolenaar
Problem: Still a timer test that is flaky on Mac. Solution: Adjust the sleep times.
2019-08-16patch 8.1.1863: confusing error when using a builtin function as methodv8.1.1863Bram Moolenaar
Problem: Confusing error when using a builtin function as method while it does not support that. Solution: Add a specific error message.
2019-08-16patch 8.1.1862: Coverity warns for not using return valuev8.1.1862Bram Moolenaar
Problem: Coverity warns for not using return value. Solution: Add "(void)" to avoid the warning.
2019-08-16patch 8.1.1861: only some assert functions can be used as a methodv8.1.1861Bram Moolenaar
Problem: Only some assert functions can be used as a method. Solution: Allow using most assert functions as a method.
2019-08-16patch 8.1.1860: map timeout test is flakyv8.1.1860Bram Moolenaar
Problem: Map timeout test is flaky. Solution: Add test to list of flaky tests. Increase timeout.
2019-08-16patch 8.1.1859: timer test sometimes fails on Macv8.1.1859Bram Moolenaar
Problem: Timer test sometimes fails on Mac. Solution: Show more info when it fails.
2019-08-16patch 8.1.1858: test for multi-byte mapping fails on some systemsv8.1.1858Bram Moolenaar
Problem: Test for multi-byte mapping fails on some systems. Solution: Test in another way.
2019-08-16patch 8.1.1857: cannot use modifier with multi-byte characterv8.1.1857Bram Moolenaar
Problem: Cannot use modifier with multi-byte character. Solution: Allow using a multi-byte character, although it doesn't work everywhere.
2019-08-16patch 8.1.1856: popup preview test fails sometimesv8.1.1856Bram Moolenaar
Problem: popup preview test fails sometimes. (Christian Brabandt) Solution: Clear the command line.
2019-08-16patch 8.1.1855: another failing timer testv8.1.1855Bram Moolenaar
Problem: Another failing timer test. Solution: Assert that timers are finished by the end of the test. Rename test functions to make them easier to find.
2019-08-16patch 8.1.1854: now another timer test is flakyv8.1.1854Bram Moolenaar
Problem: Now another timer test is flaky. Solution: Add test to list of flaky tests.
2019-08-16patch 8.1.1853: timers test is still flakyv8.1.1853Bram Moolenaar
Problem: Timers test is still flaky. Solution: Compute the time to sleep more accurately.
2019-08-15patch 8.1.1852: timers test is flakyv8.1.1852Bram Moolenaar
Problem: Timers test is flaky. Solution: Accept a larger count. Add test to list of flaky tests.
2019-08-15patch 8.1.1851: crash when sound_playfile() callback plays soundv8.1.1851Bram Moolenaar
Problem: Crash when sound_playfile() callback plays sound. Solution: Invoke callback later from event loop.
2019-08-15patch 8.1.1850: focus may remain in popup windowv8.1.1850Bram Moolenaar
Problem: Focus may remain in popup window. Solution: Change focus if needed.
2019-08-15patch 8.1.1849v8.1.1849Bram Moolenaar
2019-08-15patch 8.1.1848: 'langmap' is not used for CTRL-W command in terminalv8.1.1848Bram Moolenaar
Problem: 'langmap' is not used for CTRL-W command in terminal. Solution: Push the command in the typeahead buffer instead of the stuff buffer. (closes #4814)
2019-08-15patch 8.1.1847: suspend test is failingv8.1.1847Bram Moolenaar
Problem: Suspend test is failing. Solution: Do not use GetVimCommandClean().
2019-08-14patch 8.1.1846: inconsistently using GetVimCommand() and v:progpathv8.1.1846Bram Moolenaar
Problem: Inconsistently using GetVimCommand() and v:progpath. (Daniel Hahler) Solution: Use GetVimCommand(). (closes #4806)
2019-08-13patch 8.1.1845: may use NULL pointer when running out of memoryv8.1.1845Bram Moolenaar
Problem: May use NULL pointer when running out of memory. Solution: Do not clear popup buffers when NULL. (closes #4802)
2019-08-13patch 8.1.1844: buffer no longer unloaded when adding text propertiesv8.1.1844Bram Moolenaar
Problem: Buffer no longer unloaded when adding text properties to it. Solution: Do not create the memfile. (closes #4808)
2019-08-13patch 8.1.1843: might be freeing memory that was not allocatedv8.1.1843Bram Moolenaar
Problem: Might be freeing memory that was not allocated. Solution: Have next_fenc() set the fenc_alloced flag. (closes #4804)
2019-08-12patch 8.1.1842: test listed as flaky should no longer be flakyv8.1.1842Bram Moolenaar
Problem: Test listed as flaky should no longer be flaky. Solution: Remove Test_popup_and_window_resize from the list of flaky tests. (Daniel Hahler, close #4807)
2019-08-12patch 8.1.1841: no test for Ex shift commandsv8.1.1841Bram Moolenaar
Problem: No test for Ex shift commands. Solution: Add a test. (Dominique Pelle, closes #4801)
2019-08-12patch 8.1.1840: Testing: WorkingClipboard() is not accuratev8.1.1840Bram Moolenaar
Problem: Testing: WorkingClipboard() is not accurate. Solution: Check feature clipboard_working instead.
2019-08-11patch 8.1.1839: insufficient info when test fails because of screen sizev8.1.1839Bram Moolenaar
Problem: Insufficient info when test fails because of screen size. Solution: Report the detected screen size.
2019-08-11patch 8.1.1838: there is :spellwrong and :spellgood but not :spellrarev8.1.1838Bram Moolenaar
Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes #4291)
2019-08-10patch 8.1.1837: popup test fails if clipboard is supported but not workingv8.1.1837Bram Moolenaar
Problem: Popup test fails if clipboard is supported but not working. Solution: Add the "clipboard_working" feature. Also use Check commands instead of "if" and "throw". And remove stray ch_logfile().