summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.2394: using old C style commentsv8.1.2394Bram Moolenaar2019-12-0510-1886/+1880
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2393: using old C style commentsv8.1.2393Bram Moolenaar2019-12-059-1544/+1532
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2392: using old C style commentsv8.1.2392Bram Moolenaar2019-12-056-1748/+1727
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2391: cannot build when __QNXNTO__ is definedv8.1.2391Bram Moolenaar2019-12-052-11/+8
| | | | | Problem: Cannot build when __QNXNTO__ is defined. (Ian Wayne Larson) Solution: Move the check for "qansi". (Ken Takata, closes #5317)
* patch 8.1.2390: test94 is old style, fix 7.4.441 not testedv8.1.2390Bram Moolenaar2019-12-058-383/+325
| | | | | | Problem: Test94 is old style, fix 7.4.441 not tested. Solution: Turn test94 into a new style test. Add tests for the fix in patch 7.4.441. (Yegappan Lakshmanan, closes #5316)
* patch 8.1.2389: using old C style commentsv8.1.2389Bram Moolenaar2019-12-0419-128/+130
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2388: using old C style commentsv8.1.2388Bram Moolenaar2019-12-0412-1930/+1926
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2387: using old C style commentsv8.1.2387Bram Moolenaar2019-12-0412-1336/+1350
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2386: 'wincolor' is not used for 'listchars'v8.1.2386Bram Moolenaar2019-12-044-13/+46
| | | | | Problem: 'wincolor' is not used for 'listchars'. Solution: Combine the colors. (closes #5308)
* patch 8.1.2385: opening cmdline window with feedkeys() does not workv8.1.2385Bram Moolenaar2019-12-043-1/+9
| | | | | | Problem: Opening cmdline window with feedkeys() does not work. (Yegappan Lakshmanan) Solution: Recognize K_CMDWIN also when ex_normal_busy is set.
* patch 8.1.2384: test 48 is old stylev8.1.2384Bram Moolenaar2019-12-037-109/+137
| | | | | | Problem: Test 48 is old style. Solution: Merge test cases into new style test. (Yegappan Lakshmanan, closes #5307)
* Update a few runtime filesBram Moolenaar2019-12-032-96/+92
|
* patch 8.1.2383: using old C style commentsv8.1.2383Bram Moolenaar2019-12-028-1936/+1922
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2382: MS-Windows: When using VTP bold+inverse doesn't workv8.1.2382Bram Moolenaar2019-12-024-24/+79
| | | | | Problem: MS-Windows: When using VTP bold+inverse doesn't work. Solution: Compare with the default colors. (Nobuhiro Takasaki, closes #5303)
* patch 8.1.2381: not all register related code is covered by testsv8.1.2381Bram Moolenaar2019-12-024-19/+208
| | | | | Problem: Not all register related code is covered by tests. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5301)
* patch 8.1.2380: using old C style commentsv8.1.2380Bram Moolenaar2019-12-0110-1859/+1821
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2379: using old C style commentsv8.1.2379Bram Moolenaar2019-12-0110-2705/+2687
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2378: using old C style commentsv8.1.2378Bram Moolenaar2019-12-019-2012/+2006
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2377: GUI: when losing focus a pending operator is executedv8.1.2377Bram Moolenaar2019-12-012-2/+5
| | | | | Problem: GUI: when losing focus a pending operator is executed. Solution: Do not execute an operator when getting K_IGNORE. (closes #5300)
* patch 8.1.2376: preprocessor indents are incorrectv8.1.2376Bram Moolenaar2019-12-016-364/+366
| | | | | Problem: Preprocessor indents are incorrect. Solution: Fix the indents. (Ken Takata, closes #5298)
* patch 8.1.2375: no suffucient testing for registersv8.1.2375Bram Moolenaar2019-12-015-10/+118
| | | | | | Problem: No suffucient testing for registers. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5296) Fix that "p" on last virtual column of tab inserts spaces.
* patch 8.1.2374: unused parts of libvterm are includedv8.1.2374Bram Moolenaar2019-12-014-886/+2
| | | | | Problem: Unused parts of libvterm are included. Solution: Delete the unused files.
* patch 8.1.2373: cannot build with +popupwin but without +quickfixv8.1.2373Bram Moolenaar2019-12-0127-145/+228
| | | | | Problem: Cannot build with +popupwin but without +quickfix. (John Marriott) Solution: Adjust #ifdefs.
* patch 8.1.2372: VMS: failing realloc leaks memoryv8.1.2372Bram Moolenaar2019-11-302-2/+12
| | | | | Problem: VMS: failing realloc leaks memory. (Chakshu Gupta) Solution: Free the memory. (partly fixes #5292)
* patch 8.1.2371: FEAT_TEXT_PROP is a confusing namev8.1.2371Bram Moolenaar2019-11-3047-178/+190
| | | | | Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes #5291)
* patch 8.1.2370: build problems on VMSv8.1.2370Bram Moolenaar2019-11-304-11/+14
| | | | | Problem: Build problems on VMS. Solution: Adjust the build file. (Zoltan Arpadffy)
* patch 8.1.2369: cannot build with quickfix and without text propertiesv8.1.2369Bram Moolenaar2019-11-302-1/+3
| | | | | Problem: Cannot build with quickfix and without text properties. Solution: Fix typo. (Naruhiko Nishino)
* patch 8.1.2368: using old C style commentsv8.1.2368Bram Moolenaar2019-11-3012-961/+959
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2367: registers are not sufficiently testedv8.1.2367Bram Moolenaar2019-11-302-0/+88
| | | | | Problem: Registers are not sufficiently tested. Solution: Add a few more test cases. (Yegappan Lakshmanan, closes #5288)
* patch 8.1.2366: using old C style commentsv8.1.2366Bram Moolenaar2019-11-3038-1397/+1390
| | | | | Problem: Using old C style comments. Solution: Use // comments where appropriate.
* patch 8.1.2365: missing tests for recent popupwin changesv8.1.2365Bram Moolenaar2019-11-302-0/+60
| | | | | Problem: Missing tests for recent popupwin changes. Solution: Add test cases.
* patch 8.1.2364: termwinscroll test is flaky on FreeBSDv8.1.2364Bram Moolenaar2019-11-303-2/+5
| | | | | Problem: Termwinscroll test is flaky on FreeBSD. Solution: Add to list of flaky tests. Rename function.
* patch 8.1.2363: ml_get error when accessing Visual area in 'statusline'v8.1.2363Bram Moolenaar2019-11-303-0/+30
| | | | | Problem: ml_get error when accessing Visual area in 'statusline'. Solution: Disable Visual mode when using another window. (closes #5278)
* patch 8.1.2362: cannot place signs in a popup windowv8.1.2362Bram Moolenaar2019-11-304-7/+30
| | | | | | Problem: Cannot place signs in a popup window. (Maxim Kim) Solution: Use the group prefix "PopUp" to specify which signs should show up in a popup window. (closes #5277)
* patch 8.1.2361: MS-Windows: test failures related to VIMDLLv8.1.2361Bram Moolenaar2019-11-298-9/+54
| | | | | Problem: MS-Windows: test failures related to VIMDLL. Solution: Adjust code and tests. (Ken Takata, closes #5283)
* patch 8.1.2360: quickfix test coverage can still be improvedv8.1.2360Bram Moolenaar2019-11-292-5/+46
| | | | | Problem: Quickfix test coverage can still be improved. Solution: Add more test cases. (Yegappan Lakshmanan, closes #5276)
* patch 8.1.2359: cannot build without FEAT_FLOATv8.1.2359Bram Moolenaar2019-11-292-1/+7
| | | | | Problem: Cannot build without FEAT_FLOAT. (John Marriott) Solution: Fix #ifdefs around f_srand().
* patch 8.1.2358: tests fail on Cirrus CI for FreeBSDv8.1.2358Bram Moolenaar2019-11-297-3/+24
| | | | | Problem: Tests fail on Cirrus CI for FreeBSD. Solution: Fix a test and skip some. (Christian Brabandt, closes #5281)
* patch 8.1.2357: no test with wrong argument for rand()v8.1.2357Bram Moolenaar2019-11-282-0/+6
| | | | | Problem: No test with wrong argument for rand(). Solution: Add a test case.
* patch 8.1.2356: rand() does not use the best algorithmv8.1.2356Bram Moolenaar2019-11-283-60/+73
| | | | | | Problem: rand() does not use the best algorithm. Solution: use xoshiro128** instead of xorshift. (Kaito Udagawa, closes #5279)
* patch 8.1.2355: test with "man" fails on FreeBSDv8.1.2355Bram Moolenaar2019-11-282-2/+4
| | | | | Problem: Test with "man" fails on FreeBSD. Solution: Use "-P" instead of "--pager".
* patch 8.1.2354: Cirrus CI runs on another repositoryv8.1.2354Bram Moolenaar2019-11-281-0/+2
| | | | | Problem: Cirrus CI runs on another repository. Solution: Run Cirrus CI on vim/vim.
* patch 8.1.2353: build failure on FreeBSDv8.1.2353Bram Moolenaar2019-11-282-1/+3
| | | | | Problem: Build failure on FreeBSD. Solution: Change #ifdef to only check for Linux-like systems.
* patch 8.1.2352: CI doesn't cover FreeBSDv8.1.2352Bram Moolenaar2019-11-271-0/+2
| | | | | Problem: CI doesn't cover FreeBSD. Solution: Configure Cirrus-CI. (Christian Brabandt, closes #5273)
* patch 8.1.2351: 'wincolor' not used for > for not fitting double width charv8.1.2351Bram Moolenaar2019-11-264-3/+28
| | | | | | | | 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.
* Update runtime filesBram Moolenaar2019-11-261-40/+33
|
* patch 8.1.2350: other text for CTRL-V in Insert mode with modifyOtherKeysv8.1.2350Bram Moolenaar2019-11-269-33/+167
| | | | | | | 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)
* patch 8.1.2349: :lockvar and :unlockvar cannot be followed by "| endif"v8.1.2349Bram Moolenaar2019-11-263-0/+18
| | | | | Problem: :lockvar and :unlockvar cannot be followed by "| endif". Solution: Check for following commands. (closes #5269)
* patch 8.1.2348: :const cannot be followed by "| endif"v8.1.2348Bram Moolenaar2019-11-267-1/+16
| | | | | | Problem: :const cannot be followed by "| endif". Solution: Check following command for :const. (closes #5269) Also fix completion after :const.
* patch 8.1.2347: MacOS: build failsv8.1.2347Bram Moolenaar2019-11-262-1/+3
| | | | | Problem: MacOS: build fails. Solution: Don't define _XOPEN_SOURCE for Mac.