summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-11-09patch 8.1.2277: terminal window is not updated when info popup changesv8.1.2277Bram Moolenaar
Problem: Terminal window is not updated when info popup changes. Solution: Redraw windows when re-using an info popup. (closes #5192)
2019-11-09patch 8.1.2276: MS-Windows: session test leaves files behindv8.1.2276Bram Moolenaar
Problem: MS-Windows: session test leaves files behind. Solution: Wipe out buffers before deleting the directory. (closes #5187)
2019-11-09patch 8.1.2275: using "seesion" looks like a mistakev8.1.2275Bram Moolenaar
Problem: Using "seesion" looks like a mistake. Solution: Use an underscore to make the function sort first.
2019-11-09patch 8.1.2274: newlines in 'balloonexpr' result only work in the GUIv8.1.2274Bram Moolenaar
Problem: Newlines in 'balloonexpr' result only work in the GUI. Solution: Also recognize newlines in the terminal. (closes #5193)
2019-11-09patch 8.1.2273: wrong default when "pos" is changed with popup_atcursor()v8.1.2273Bram Moolenaar
Problem: Wrong default when "pos" is changed with popup_atcursor(). Solution: Adjust the default line and col when "pos" is not the default value. (#5151)
2019-11-08patch 8.1.2272: test may hang at more promptv8.1.2272Bram Moolenaar
Problem: Test may hang at more prompt. Solution: Reset 'more' after resetting 'compatible'. (Michael Soyka)
2019-11-08patch 8.1.2271: build error if FEAT_TAG_BINS is not definedv8.1.2271Bram Moolenaar
Problem: Build error if FEAT_TAG_BINS is not defined. (John Marriott) Solution: Add #ifdef.
2019-11-08patch 8.1.2270: "gf" is not tested in Visual modev8.1.2270Bram Moolenaar
Problem: "gf" is not tested in Visual mode. Solution: Add Visual mode test and test errors. (Dominique Pelle, closes #5197)
2019-11-07patch 8.1.2269: tags file with very long line stops using binary searchv8.1.2269Bram Moolenaar
Problem: Tags file with very long line stops using binary search. Solution: Reallocate the buffer if needed.
2019-11-07patch 8.1.2268: spell file flag zero is not recognizedv8.1.2268Bram Moolenaar
Problem: Spell file flag zero is not recognized. Solution: Use -1 as an error value, so that zero can be used as a valid flag number.
2019-11-06patch 8.1.2267: compiler warning for uninitialized variablev8.1.2267Bram Moolenaar
Problem: Compiler warning for uninitialized variable. (Tony Mechelynck) Solution: Rearrange the code.
2019-11-06patch 8.1.2266: position unknown for a mouse click in a popup windowv8.1.2266Bram Moolenaar
Problem: Position unknown for a mouse click in a popup window. Solution: Set v:mouse_col and v:mouse_lnum. (closes #5171)
2019-11-06patch 8.1.2265: when popup with "botleft" does not fit it flips incorrectlyv8.1.2265Bram Moolenaar
Problem: When popup with "botleft" does not fit it flips incorrectly. Solution: Only flip when there is more space on the other side. Add the "posinvert" option to disable flipping and do it in both directions if enabled. (closes #5151)
2019-11-06patch 8.1.2264: there are two test files for :letv8.1.2264Bram Moolenaar
Problem: There are two test files for :let. Solution: Merge the two files.
2019-11-06patch 8.1.2263: 'noesckeys' test fails in GUIv8.1.2263Bram Moolenaar
Problem: 'noesckeys' test fails in GUI. Solution: Skip the test in the GUI.
2019-11-06patch 8.1.2262: unpack assignment in function not recognizedv8.1.2262Bram Moolenaar
Problem: Unpack assignment in function not recognized. Solution: Skip over "[a, b]". (closes #5051)
2019-11-06patch 8.1.2261: with modifyOtherKeys set 'noesckeys' doesn't workv8.1.2261Bram Moolenaar
Problem: With modifyOtherKeys set 'noesckeys' doesn't work. (James McCoy) Solution: Disable modifyOtherKeys while in Insert mode when 'noesckeys' is set. (closes #5180)
2019-11-05patch 8.1.2260: terminal test may fail on MS-Windowsv8.1.2260Bram Moolenaar
Problem: Terminal test may fail on MS-Windows. Solution: Catch the situation that "term dir" fails with a CreateProcess error.
2019-11-05patch 8.1.2259: running tests may leave XfakeHOME behindv8.1.2259Bram Moolenaar
Problem: Running tests may leave XfakeHOME behind. Solution: Source summarize.vim without using setup.vim. (closes #5177) Also fix that on MS-Windows the test log isn't echoed.
2019-11-05patch 8.1.2258: may get hit-enter prompt after entering a numberv8.1.2258Bram Moolenaar
Problem: May get hit-enter prompt after entering a number. (Malcolm Rowe) Solution: Put back accidentally deleted lines. (closes #5176)
2019-11-05patch 8.1.2257: MS-Windows GUI: scroll wheel always uses current windowv8.1.2257Bram Moolenaar
Problem: MS-Windows GUI: scroll wheel always uses current window. Solution: Add the 'scrollfocus' option for MS-Windows.
2019-11-04patch 8.1.2256: test for ":term ++shell" fails on MS-Windowsv8.1.2256Bram Moolenaar
Problem: Test for ":term ++shell" fails on MS-Windows. Solution: Accept failure of "dir" executable.
2019-11-04patch 8.1.2255: ":term ++shell" does not work on MS-Windowsv8.1.2255Bram Moolenaar
Problem: ":term ++shell" does not work on MS-Windows. Solution: Add MS-Windows support.
2019-11-04patch 8.1.2254: MS-Windows: mouse scroll wheel doesn't work in popupv8.1.2254Bram Moolenaar
Problem: MS-Windows: mouse scroll wheel doesn't work in popup. Solution: Handle mouse wheel events separately. (closes #5138)
2019-11-04patch 8.1.2253: using "which" to check for an executable is not reliablev8.1.2253Bram Moolenaar
Problem: Using "which" to check for an executable is not reliable. Solution: Use "command -v" instead. Also exit with error code when generating tags has an error. (closes #5174)
2019-11-04patch 8.1.2252: compiler warning for int sizev8.1.2252Bram Moolenaar
Problem: Compiler warning for int size. Solution: Add type cast. (Mike Williams)
2019-11-03patch 8.1.2251: ":term command" may not work without a shellv8.1.2251Bram Moolenaar
Problem: ":term command" may not work without a shell. Solution: Add the ++shell option to :term. (closes #3340)
2019-11-03patch 8.1.2250: CTRL-U and CTRL-D don't work in popup windowv8.1.2250Bram Moolenaar
Problem: CTRL-U and CTRL-D don't work in popup window. Solution: Initialize 'scroll'. Add "lastline" in popup_getpos(). (closes #5170)
2019-11-03patch 8.1.2249: "make vimtags" does not print any messagev8.1.2249Bram Moolenaar
Problem: "make vimtags" does not print any message. Solution: Add a message that the tags have been updated.
2019-11-03patch 8.1.2248: CTRL-W dot does not work when modifyOtherKeys is enabledv8.1.2248Bram Moolenaar
Problem: CTRL-W dot does not work in a terminal when modifyOtherKeys is enabled. Solution: Use the modifier when needed. Pass the modifier along with the key to avoid mistakes.
2019-11-03patch 8.1.2247: "make vimtags" does not work in runtime/docv8.1.2247Bram Moolenaar
Problem: "make vimtags" does not work in runtime/doc. Solution: Test existence with "which" instead of "test -x". (Ken Takata)
2019-11-03patch 8.1.2246: some tests are still in old stylev8.1.2246Bram Moolenaar
Problem: Some tests are still in old style. Solution: Change a few tests to new style. (Yegappan Lakshmanan)
2019-11-03patch 8.1.2245: third character of 'listchars' tab shows in wrong placev8.1.2245Bram Moolenaar
Problem: Third character of 'listchars' tab shows in wrong place when 'breakindent' is set. Solution: Set c_final to NUL. (Naruhiko Nishino, closes #5165)
2019-11-02patch 8.1.2244: 'wrapscan' is not used for "gn"v8.1.2244Bram Moolenaar
Problem: 'wrapscan' is not used for "gn". Solution: Only reset 'wrapscan' for the first search round. (closes #5164)
2019-11-02patch 8.1.2243: typos in commentsv8.1.2243Bram Moolenaar
Problem: Typos in comments. Solution: Fix the typos. (Dominique Pelle, closes #5160) Also adjust formatting a bit.
2019-11-02patch 8.1.2242: creating docs tags uses user preferencesv8.1.2242Bram Moolenaar
Problem: Creating docs tags uses user preferences. (Tony Mechelynck) Solution: Add "--clean".
2019-11-02patch 8.1.2241: match highlight does not combine with 'wincolor'v8.1.2241Bram Moolenaar
Problem: Match highlight does not combine with 'wincolor'. Solution: Apply 'wincolor' last on top of any other attribute. (closes #5159)
2019-11-02patch 8.1.2240: popup window width changes when scrollingv8.1.2240Bram Moolenaar
Problem: Popup window width changes when scrolling. Solution: Also adjust maxwidth when applying minwidth and there is a scrollbar. Fix off-by-one error. (closes #5162)
2019-11-02patch 8.1.2239: CI fails when running tests without building Vimv8.1.2239Bram Moolenaar
Problem: CI fails when running tests without building Vim. Solution: Skip creating doc tags if the execute does not exist.
2019-11-02Update runtime files.Bram Moolenaar
2019-11-01patch 8.1.2238: error in docs tags goes unnoticedv8.1.2238Bram Moolenaar
Problem: Error in docs tags goes unnoticed. Solution: Adjust tags build command. (Ken Takata, closes #5158)
2019-10-31patch 8.1.2237: mode() result depends on whether CURSOR_SHAPE is definedv8.1.2237Bram Moolenaar
Problem: Mode() result after usign "r" depends on whether CURSOR_SHAPE is defined. (Christian Brabandt) Solution: Move the #ifdef to only skip ui_cursor_shape().
2019-10-31patch 8.1.2236: ml_get error if pattern matches beyond last linev8.1.2236Bram Moolenaar
Problem: Ml_get error if pattern matches beyond last line. Solution: Adjust position if needed. (Christian Brabandt, closes #5139)
2019-10-31patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte charv8.1.2235Bram Moolenaar
Problem: "C" with 'virtualedit' set does not include multi-byte char. Solution: Include the whole multi-byte char. (Nobuhiro Takasaki, closes #5152)
2019-10-30patch 8.1.2234: get_short_pathname() fails depending on encodingv8.1.2234Bram Moolenaar
Problem: get_short_pathname() fails depending on encoding. Solution: Use the wide version of the library function. (closes #5129)
2019-10-29patch 8.1.2233: cannot get the Vim command line argumentsv8.1.2233Bram Moolenaar
Problem: Cannot get the Vim command line arguments. Solution: Add v:argv. (Dmitri Vereshchagin, closes #1322)
2019-10-28patch 8.1.2231: not easy to move to the middle of a text linev8.1.2231Bram Moolenaar
Problem: Not easy to move to the middle of a text line. Solution: Add the gM command. (Yasuhiro Matsumoto, closes #2070)
2019-10-28patch 8.1.2230: MS-Windows: testing external commands can be improvedv8.1.2230Bram Moolenaar
Problem: MS-Windows: testing external commands can be improved. Solution: Adjust tests, remove duplicate test. (closes #4928)
2019-10-27patch 8.1.2229: cannot color number column above/below cursor differentlyv8.1.2229Bram Moolenaar
Problem: Cannot color number column above/below cursor differently. Solution: Add LineNrAbove and LineNrBelow. (Shaun Brady, closes #624)
2019-10-27patch 8.1.2228: screenpos() returns wrong values when 'number' is setv8.1.2228Bram Moolenaar
Problem: screenpos() returns wrong values when 'number' is set. (Ben Jackson) Solution: Compare the column with the window width. (closes #5133)