summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-11-19patch 8.1.2323: Old MSVC version no longer tested.v8.1.2323Bram Moolenaar
Problem: Old MSVC version no longer tested. Solution: Drop support for MSCV 2008 and older. (Ken Takata, closes #5248)
2019-11-19patch 8.1.2322: quickfix test fails in very big terminalv8.1.2322Bram Moolenaar
Problem: Quickfix test fails in very big terminal. Solution: Adjust the expected result for the width. (Masato Nishihata, closes #5244)
2019-11-18patch 8.1.2321: cannot select all text with the mousev8.1.2321Bram Moolenaar
Problem: Cannot select all text with the mouse. (John Marriott) Solution: Move limiting the mouse column to f_getmousepos(). (closes #5242)
2019-11-18patch 8.1.2320: insufficient test coverage for quickfixv8.1.2320Bram Moolenaar
Problem: Insufficient test coverage for quickfix. Solution: Add more tests. Fix uncovered problem. (Yegappan Lakshmanan, closes #5238)
2019-11-18patch 8.1.2319: compiler warning for int sizev8.1.2319Bram Moolenaar
Problem: Compiler warning for int size. Solution: Add typecast. (Mike Williams)
2019-11-17patch 8.1.2318: MS-Windows GUI: main background shows in toolbarv8.1.2318Bram Moolenaar
Problem: MS-Windows GUI: main background shows in toolbar. Solution: Remove transparency from the toolbar. (Simon Sadler)
2019-11-17patch 8.1.2317: no test for spell affix file with flag on suffixv8.1.2317Bram Moolenaar
Problem: No test for spell affix file with flag on suffix. Solution: Add a test case.
2019-11-17patch 8.1.2316: FORTIFY_SOURCE can also be present in CPPFLAGSv8.1.2316Bram Moolenaar
Problem: FORTIFY_SOURCE can also be present in CPPFLAGS. Solution: Remove it in configure. (Benedikt Morbach, closes #2786)
2019-11-17patch 8.1.2315: not always using the right window when jumping to an errorv8.1.2315Bram Moolenaar
Problem: Not always using the right window when jumping to an error. Solution: Add the "uselast" flag in 'switchbuf'. (closes #1652)
2019-11-17patch 8.1.2314: vi' sometimes does not select anythingv8.1.2314Bram Moolenaar
Problem: vi' sometimes does not select anything. Solution: Recognize an empty selection. (Christian Brabandt, closes #5183)
2019-11-17patch 8.1.2313: debugging where a delay comes from is not easyv8.1.2313Bram Moolenaar
Problem: Debugging where a delay comes from is not easy. Solution: Use different values when calling ui_delay().
2019-11-17patch 8.1.2312: "line:" field in tags file not usedv8.1.2312Bram Moolenaar
Problem: "line:" field in tags file not used. Solution: Recognize the field and use the value. (Andy Massimino, Daniel Hahler, closes #5232, closes #2546, closes #1057)
2019-11-17Update runtime files.Bram Moolenaar
2019-11-16patch 8.1.2311: warning for missing function prototypev8.1.2311Bram Moolenaar
Problem: Warning for missing function prototype. Solution: Add the proto. (Dominique Pelle, closes #5233)
2019-11-16patch 8.1.2310: no proper test for directory changes in quickfixv8.1.2310Bram Moolenaar
Problem: No proper test for directory changes in quickfix. Solution: Add a test that uses multiple directories. (Yegappan Lakshmanan, closes #5230)
2019-11-16patch 8.1.2309: compiler warning for argument typev8.1.2309Bram Moolenaar
Problem: Compiler warning for argument type. Solution: Use linenr_T and cast to varnumber_T. (John Marriott)
2019-11-16patch 8.1.2308: deleting text before zero-width textprop removes itv8.1.2308Bram Moolenaar
Problem: Deleting text before zero-width textprop removes it. Solution: Keep zero-width textprop when deleting text.
2019-11-16patch 8.1.2307: positioning popup doesn't work for buffer-local textpropv8.1.2307Bram Moolenaar
Problem: Positioning popup doesn't work for buffer-local textprop. Solution: Make it work. (closes #5225)
2019-11-16patch 8.1.2306: double and triple clicks are not testedv8.1.2306Bram Moolenaar
Problem: Double and triple clicks are not tested. Solution: Test mouse clicks to select text. (closes #5226)
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.