summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-11-27patch 8.1.2352: CI doesn't cover FreeBSDv8.1.2352Bram Moolenaar
Problem: CI doesn't cover FreeBSD. Solution: Configure Cirrus-CI. (Christian Brabandt, closes #5273)
2019-11-26patch 8.1.2351: 'wincolor' not used for > for not fitting double width charv8.1.2351Bram Moolenaar
Problem: 'wincolor' not used for > for not fitting double width char. Also: popup drawn on right half of double width character looks wrong. Solution: Adjust color for > character. Clear left half of double width character if right half is being overwritten.
2019-11-26Update runtime filesBram Moolenaar
2019-11-26patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeysv8.1.2350Bram Moolenaar
Problem: Other text for CTRL-V in Insert mode with modifyOtherKeys. Solution: Convert the Escape sequence back to key as if modifyOtherKeys is not set, and use CTRL-SHIFT-V to get the Escape sequence itself. (closes #5254)
2019-11-26patch 8.1.2349: :lockvar and :unlockvar cannot be followed by "| endif"v8.1.2349Bram Moolenaar
Problem: :lockvar and :unlockvar cannot be followed by "| endif". Solution: Check for following commands. (closes #5269)
2019-11-26patch 8.1.2348: :const cannot be followed by "| endif"v8.1.2348Bram Moolenaar
Problem: :const cannot be followed by "| endif". Solution: Check following command for :const. (closes #5269) Also fix completion after :const.
2019-11-26patch 8.1.2347: MacOS: build failsv8.1.2347Bram Moolenaar
Problem: MacOS: build fails. Solution: Don't define _XOPEN_SOURCE for Mac.
2019-11-26patch 8.1.2346: CTRL-R CTRL-R doesn't work with modifyOtherKeysv8.1.2346Bram Moolenaar
Problem: CTRL-R CTRL-R doesn't work with modifyOtherKeys. Solution: Allow key codes when fetching argument for CTRL-R. (closes #5266) Also fix CTRL-G in Insert mode.
2019-11-26patch 8.1.2345: .cjs files are not recognized as Javascriptv8.1.2345Bram Moolenaar
Problem: .cjs files are not recognized as Javascript. Solution: Add the *.cjs pattern. (closes #5268)
2019-11-26patch 8.1.2344: Cygwin: warning for using strptime()v8.1.2344Bram Moolenaar
Problem: Cygwin: warning for using strptime(). Solution: Move defining _XOPEN_SOURCE and __USE_XOPEN to vim.h. (Ken Takata, closes #5265) Use 700 for _XOPEN_SOURCE for mkdtemp().
2019-11-26patch 8.1.2343: using time() for srand() is not very randomv8.1.2343Bram Moolenaar
Problem: Using time() for srand() is not very random. Solution: use /dev/urandom if available
2019-11-25patch 8.1.2342: random number generator in Vim script is slowv8.1.2342Bram Moolenaar
Problem: Random number generator in Vim script is slow. Solution: Add rand() and srand(). (Yasuhiro Matsumoto, closes #1277)
2019-11-25patch 8.1.2341: not so easy to interrupt a script programaticallyv8.1.2341Bram Moolenaar
Problem: Not so easy to interrupt a script programatically. Solution: Add the interrupt() function. (Yasuhiro Matsumoto, closes #2834)
2019-11-24patch 8.1.2340: quickfix test fails under valgrind and asanv8.1.2340Bram Moolenaar
Problem: Quickfix test fails under valgrind and asan. Solution: Make sure long line does not overflow IObuff. (Dominique Pelle, closes #5263) Put back fix for large terminals. (Yegappan Lakshmanan, closes #5264)
2019-11-24patch 8.1.2339: insufficient testing for quickfixv8.1.2339Bram Moolenaar
Problem: Insufficient testing for quickfix. Solution: Add a few more tests. (Yegappan Lakshmanan, closes #5261)
2019-11-23patch 8.1.2338: using Visual mark sith :s gives E20 if not setv8.1.2338Bram Moolenaar
Problem: Using Visual mark sith :s gives E20 if not set. Solution: Ignore errors when handling 'incsearch'. (closes #3837)
2019-11-22patch 8.1.2337: double-click time sometimes miscomputedv8.1.2337Bram Moolenaar
Problem: Double-click time sometimes miscomputed. Solution: Correct time computation. (Dominique Pelle, closes #5259)
2019-11-22patch 8.1.2336: when an expr mapping moves the cursor it is not restoredv8.1.2336Bram Moolenaar
Problem: When an expr mapping moves the cursor it is not restored. Solution: Position the cursor after an expr mapping. (closes #5256)
2019-11-22patch 8.1.2335: error message for function arguments may use NULL pointerv8.1.2335Bram Moolenaar
Problem: Error message for function arguments may use NULL pointer. (Coverity) Solution: Use the original function name.
2019-11-22patch 8.1.2334: possible NULL pointer dereference in popup_locate()v8.1.2334Bram Moolenaar
Problem: Possible NULL pointer dereference in popup_locate(). (Coverity) Solution: Check for NULL pointer.
2019-11-21patch 8.1.2333: with modifyOtherKeys CTRL-^ doesn't workv8.1.2333Bram Moolenaar
Problem: With modifyOtherKeys CTRL-^ doesn't work. Solution: Handle the exception.
2019-11-21patch 8.1.2332: missing file in refactoringv8.1.2332Bram Moolenaar
Problem: Missing file in refactoring. Solution: Update missing file.
2019-11-21patch 8.1.2331: the option.c file is still very bigv8.1.2331Bram Moolenaar
Problem: The option.c file is still very big. Solution: Move a few functions to where they fit better. (Yegappan Lakshmanan, closes #4895)
2019-11-21patch 8.1.2330: vi' does not always work when 'selection' is exclusivev8.1.2330Bram Moolenaar
Problem: vi' does not always work when 'selection' is exclusive. Solution: Adjust start position.
2019-11-21patch 8.1.2329: mouse multiple click test is a bit flakyv8.1.2329Bram Moolenaar
Problem: Mouse multiple click test is a bit flaky. Solution: Add it to the list of flaky tests.
2019-11-21patch 8.1.2328: a few hangul input pieces remainv8.1.2328Bram Moolenaar
Problem: A few hangul input pieces remain. Solution: Update VMS makefile.
2019-11-21patch 8.1.2327: cannot build with Hangul inputv8.1.2327Bram Moolenaar
Problem: Cannot build with Hangul input. Solution: Remove Hangul input support.
2019-11-21patch 8.1.2326: cannot parse a date/time stringv8.1.2326Bram Moolenaar
Problem: Cannot parse a date/time string. Solution: Add strptime(). (Stephen Wall, closes #)
2019-11-21patch 8.1.2325: crash when using balloon with empty linev8.1.2325Bram Moolenaar
Problem: Crash when using balloon with empty line. Solution: Handle empty lines. (Markus Braun)
2019-11-21patch 8.1.2324: with of scrollbar in popup menu not taken into accountv8.1.2324Bram Moolenaar
Problem: With of scrollbar in popup menu not taken into account. Solution: Add the width of the scrollbar.
2019-11-20Update runtime files.Bram Moolenaar
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)