summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-11-16patch 8.1.2305: no warning for wrong entry in translationsv8.1.2305Bram Moolenaar
Problem: No warning for wrong entry in translations. Solution: Check semicolons in keywords entry of desktop file.
2019-11-16patch 8.1.2304: cannot get the mouse position when getting a mouse clickv8.1.2304Bram Moolenaar
Problem: Cannot get the mouse position when getting a mouse click. Solution: Add getmousepos().
2019-11-16patch 8.1.2303: cursor in wrong position after horizontal scrollv8.1.2303Bram Moolenaar
Problem: Cursor in wrong position after horizontal scroll. Solution: Set w_valid_leftcol. (closes #5214, closes #5224)
2019-11-16patch 8.1.2302: :lockmarks does not work for '[ and ']v8.1.2302Bram Moolenaar
Problem: :lockmarks does not work for '[ and ']. Solution: save and restore '[ and '] marks. (James McCoy, closes #5222)
2019-11-15patch 8.1.2301: MS-Windows GUI: drawing error when background color changesv8.1.2301Bram Moolenaar
Problem: MS-Windows GUI: drawing error when background color changes. Solution: Implement gui_mch_new_colors(). (Simon Sadler)
2019-11-14Fix vim.desktop generation.Bram Moolenaar
2019-11-13Update runtime filesBram Moolenaar
2019-11-13patch 8.1.2300: redraw breaks going through list of popup windowsv8.1.2300Bram Moolenaar
Problem: Redraw breaks going through list of popup windows. Solution: Use different flags for popup_reset_handled(). (closes #5216)
2019-11-13patch 8.1.2299: ConPTY in MS-Windows 1909 is still wrongv8.1.2299Bram Moolenaar
Problem: ConPTY in MS-Windows 1909 is still wrong. Solution: Use same solution as for 1903. (Nobuhiro Takasaki, closes #5217)
2019-11-13patch 8.1.2298: missing part of 8.1.2296v8.1.2298Bram Moolenaar
Problem: Missing part of 8.1.2296. Solution: s/test/text/
2019-11-12patch 8.1.2297: the ex_vimgrep() function is too longv8.1.2297Bram Moolenaar
Problem: The ex_vimgrep() function is too long. Solution: Split it in three parts. (Yegappan Lakshmanan, closes #5211)
2019-11-12patch 8.1.2296: text properties are not combined with syntax by defaultv8.1.2296Bram Moolenaar
Problem: Text properties are not combined with syntax by default. Solution: Make it work as documented. (closes #5190)
2019-11-12patch 8.1.2295: if buffer of popup is in another window cursorline sign showsv8.1.2295Bram Moolenaar
Problem: If buffer of popup is in another window cursorline sign shows. Solution: Check the group of the sign.
2019-11-12patch 8.1.2294: cursor pos wrong with concealing and search causes a scrollv8.1.2294Bram Moolenaar
Problem: Cursor position wrong when characters are concealed and asearch causes a scroll. Solution: Fix the cursor column in a concealed line after window scroll. (closes #5215, closes #5012)
2019-11-12patch 8.1.2293: join adds trailing space when second line is emptyv8.1.2293Bram Moolenaar
Problem: Join adds trailing space when second line is empty. (Brennan Vincent) Solution: Do not add a trailing space.
2019-11-11patch 8.1.2292: v:mouse_winid not set on click in popup windowv8.1.2292Bram Moolenaar
Problem: v:mouse_winid not set on click in popup window. Solution: Set v:mouse_winid. (closes #5171)
2019-11-10patch 8.1.2291: memory leak when executing command in a terminalv8.1.2291Bram Moolenaar
Problem: Memory leak when executing command in a terminal. Solution: Free "argv". (Dominique Pelle, closes #5208)
2019-11-10Update runtime filesBram Moolenaar
2019-11-10patch 8.1.2290: autocommand test failsv8.1.2290Bram Moolenaar
Problem: Autocommand test fails. Solution: Remove 'closeoff' from 'diffopt'.
2019-11-10patch 8.1.2289: after :diffsplit closing the window does not disable diffv8.1.2289Bram Moolenaar
Problem: After :diffsplit closing the window does not disable diff. Solution: Add "closeoff" to 'diffopt' and add it to the default.
2019-11-10patch 8.1.2288: not using all space when popup with "topleft" flips to abovev8.1.2288Bram Moolenaar
Problem: Not using all space when popup with "topleft" flips to above. Solution: Recompute the height when a popup flips from below to above. (closes #5151)
2019-11-10patch 8.1.2287: using EndOfBuffer highlight in popup does not look goodv8.1.2287Bram Moolenaar
Problem: Using EndOfBuffer highlight in popup does not look good. Solution: Do not EndOfBuffer highlight. (closes #5204)
2019-11-10patch 8.1.2286: using border highlight in popup window leaks memoryv8.1.2286Bram Moolenaar
Problem: Using border highlight in popup window leaks memory. Solution: Free memory before overwriting. (Dominique Pelle, closes #5203)
2019-11-10patch 8.1.2285: padding in structures wastes memoryv8.1.2285Bram Moolenaar
Problem: Padding in structures wastes memory. Solution: Move fields to avoid padding. (Dominique Pelle, closes #5202)
2019-11-10patch 8.1.2284: compiler warning for unused variablev8.1.2284Bram Moolenaar
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Add #ifdef.
2019-11-10patch 8.1.2283: missed on use of p_sbrv8.1.2283Bram Moolenaar
Problem: Missed on use of p_sbr. Solution: Add missing p_sbr change.
2019-11-10patch 8.1.2282: crash when passing many arguments through a partialv8.1.2282Bram Moolenaar
Problem: Crash when passing many arguments through a partial. (Andy Massimino) Solution: Check the number of arguments. (closes #5186)
2019-11-09patch 8.1.2281: 'showbreak' cannot be set for one windowv8.1.2281Bram Moolenaar
Problem: 'showbreak' cannot be set for one window. Solution: Make 'showbreak' global-local.
2019-11-09patch 8.1.2280: crash when passing partial to substitute()v8.1.2280Bram Moolenaar
Problem: Crash when passing partial to substitute(). Solution: Take extra arguments into account. (closes #5186)
2019-11-09patch 8.1.2279: computation of highlight attributes is too complicatedv8.1.2279Bram Moolenaar
Problem: Computation of highlight attributes is too complicated. Solution: Simplify the attribute computation and make it more consistent. (closes #5190) Fix that 'combine' set to zero doesn't work.
2019-11-09patch 8.1.2278: using "cd" with "exe" may failv8.1.2278Bram Moolenaar
Problem: Using "cd" with "exe" may fail. Solution: Use chdir() instead.
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.