Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update runtime files | Bram Moolenaar | 2020-03-14 | 5 | -29/+78 |
| | |||||
* | patch 8.2.0357: cannot delete a text property matching both id and typev8.2.0357 | Bram Moolenaar | 2020-03-05 | 1 | -0/+1 |
| | | | | | | Problem: Cannot delete a text property matching both id and type. (Axel Forsman) Solution: Add the "both" argument. | ||||
* | Update runtime files | Bram Moolenaar | 2020-03-01 | 7 | -17/+30 |
| | |||||
* | patch 8.2.0335: no completion for :disassemblev8.2.0335 | Bram Moolenaar | 2020-02-29 | 1 | -0/+8 |
| | | | | | | Problem: No completion for :disassemble. Solution: Make completion work. Also complete script-local functions if the name starts with "s:". | ||||
* | patch 8.2.0320: no Haiku supportv8.2.0320 | Bram Moolenaar | 2020-02-26 | 8 | -1/+265 |
| | | | | | Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605) | ||||
* | Update runtime files. | Bram Moolenaar | 2020-02-26 | 7 | -33/+62 |
| | |||||
* | patch 8.2.0299: Vim9: ISN_STORE with argument not testedv8.2.0299 | Bram Moolenaar | 2020-02-22 | 2 | -0/+9 |
| | | | | | | Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void(). | ||||
* | patch 8.2.0298: Vim9 script: cannot start command with a string constantv8.2.0298 | Bram Moolenaar | 2020-02-22 | 1 | -3/+5 |
| | | | | | Problem: Vim9 script: cannot start command with a string constant. Solution: Recognize expression starting with '('. | ||||
* | patch 8.2.0296: mixing up "long long" and __int64 may cause problemsv8.2.0296 | Bram Moolenaar | 2020-02-22 | 2 | -4/+9 |
| | | | | | | Problem: Mixing up "long long" and __int64 may cause problems. (John Marriott) Solution: Pass varnumber_T to vim_snprintf(). Add v:numbersize. | ||||
* | patch 8.2.0294: cannot use Ex command that is also a function namev8.2.0294 | Bram Moolenaar | 2020-02-21 | 1 | -1/+17 |
| | | | | | Problem: Cannot use Ex command that is also a function name. Solution: Recognize an Ex command by a colon prefix. | ||||
* | patch 8.2.0286: cannot use popup_close() for a terminal popupv8.2.0286 | Bram Moolenaar | 2020-02-20 | 1 | -1/+3 |
| | | | | | Problem: Cannot use popup_close() for a terminal popup. Solution: Allow using popup_close(). (closes #5666) | ||||
* | Update runtime files. | Bram Moolenaar | 2020-02-15 | 9 | -36/+61 |
| | |||||
* | patch 8.2.0258: modifyOtherKeys cannot be temporarily disabledv8.2.0258 | Bram Moolenaar | 2020-02-14 | 1 | -1/+15 |
| | | | | | Problem: ModifyOtherKeys cannot be temporarily disabled. Solution: Add echoraw() with an example for modifyOtherKeys. | ||||
* | patch 8.2.0257: cannot recognize a terminal in a popup windowv8.2.0257 | Bram Moolenaar | 2020-02-14 | 1 | -0/+17 |
| | | | | | Problem: Cannot recognize a terminal in a popup window. Solution: Add the win_gettype() function. | ||||
* | patch 8.2.0250: test_clear_search_pat() is unusedv8.2.0250 | Bram Moolenaar | 2020-02-12 | 3 | -7/+0 |
| | | | | | Problem: test_clear_search_pat() is unused. Solution: Remove the function. (Yegappan Lakshmanan, closes #5624) | ||||
* | patch 8.2.0233: crash when using garbagecollect() in between rand()v8.2.0233 | Bram Moolenaar | 2020-02-08 | 2 | -1/+5 |
| | | | | | | Problem: Crash when using garbagecollect() in between rand(). Solution: Redesign the rand() and srand() implementation. (Yasuhiro Matsumoto, closes #5587, closes #5588) | ||||
* | patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212 | Bram Moolenaar | 2020-02-05 | 3 | -0/+7 |
| | | | | | | Problem: Missing search/substitute pattern hardly tested. Solution: Add test_clear_search_pat() and tests. (Yegappan Lakshmanan, closes #5579) | ||||
* | Update runtime files. | Bram Moolenaar | 2020-02-04 | 10 | -39/+128 |
| | |||||
* | patch 8.2.0208: fnamemodify() does not apply ":~" when followed by ":."v8.2.0208 | Bram Moolenaar | 2020-02-04 | 1 | -2/+1 |
| | | | | | | Problem: Fnamemodify() does not apply ":~" when followed by ":.". Solution: Don't let a failing ":." cause the ":~" to be skipped. (Yasuhiro Matsumoto, closes #5577) | ||||
* | patch 8.2.0161: not recognizing .gv file as dot filetypev8.2.0161 | Bram Moolenaar | 2020-01-27 | 5 | -0/+0 |
| | | | | | Problem: Not recognizing .gv file as dot filetype. Solution: Add *.gv to dot pattern. (closes #5544) | ||||
* | patch 8.2.0158: triggering CompleteDone earlier is not backwards compatiblev8.2.0158 | Bram Moolenaar | 2020-01-26 | 1 | -5/+18 |
| | | | | | | Problem: Triggering CompleteDone earlier is not backwards compatible. (Daniel Hahler) Solution: Add CompleteDonePre instead. | ||||
* | patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149 | Bram Moolenaar | 2020-01-26 | 4 | -2/+573 |
| | | | | | Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes. | ||||
* | Update runtime files. | Bram Moolenaar | 2020-01-25 | 3 | -52/+52 |
| | |||||
* | Update runtime files. | Bram Moolenaar | 2020-01-21 | 10 | -38/+52 |
| | |||||
* | patch 8.2.0140: CI does not test building doc tagsv8.2.0140 | Bram Moolenaar | 2020-01-21 | 2 | -5/+9 |
| | | | | | | Problem: CI does not test building doc tags. Solution: Add the vimtags/gcc build. Cleanup showing version. (Ozaki Kiichi, closes #5513) | ||||
* | patch 8.2.0128: cannot list options one per linev8.2.0128 | Bram Moolenaar | 2020-01-18 | 1 | -4/+8 |
| | | | | | Problem: Cannot list options one per line. Solution: Use ":set!" to list one option per line. | ||||
* | patch 8.2.0123: complete_info() does not work when CompleteDone is triggeredv8.2.0123 | Bram Moolenaar | 2020-01-17 | 1 | -1/+3 |
| | | | | | Problem: complete_info() does not work when CompleteDone is triggered. Solution: Trigger CompleteDone before clearing the info. | ||||
* | patch 8.2.0122: readme files still mention MS-DOSv8.2.0122 | Bram Moolenaar | 2020-01-16 | 1 | -1/+1 |
| | | | | | Problem: Readme files still mention MS-DOS. Solution: Update readme files. (Ken Takata, closes #5486) | ||||
* | Update runtime files. | Bram Moolenaar | 2020-01-14 | 26 | -180/+145 |
| | |||||
* | patch 8.2.0110: prop_find() is not implementedv8.2.0110 | Bram Moolenaar | 2020-01-10 | 1 | -21/+0 |
| | | | | | Problem: prop_find() is not implemented. Solution: Implement prop_find(). (Ryan Hackett, closes #5421, closes #4970) | ||||
* | Update runtime files. | Bram Moolenaar | 2020-01-09 | 13 | -107/+145 |
| | |||||
* | patch 8.2.0095: cannot specify exit code for :cquitv8.2.0095 | Bram Moolenaar | 2020-01-06 | 1 | -2/+11 |
| | | | | | Problem: Cannot specify exit code for :cquit. Solution: Add optional argument. (Thinca, Yegappan Lakshmanan, closes #5442) | ||||
* | patch 8.2.0088: insufficient tests for tags; bug in using extra tag fieldv8.2.0088 | Bram Moolenaar | 2020-01-05 | 1 | -7/+6 |
| | | | | | | Problem: Insufficient tests for tags; bug in using extra tag field when using an ex command to position the cursor. Solution: Fix the bug, add more tests. (Yegappan Lakshmanan, closes #5439) | ||||
* | patch 8.2.0084: complete item "user_data" can only be a stringv8.2.0084 | Bram Moolenaar | 2020-01-04 | 1 | -1/+2 |
| | | | | | Problem: Complete item "user_data" can only be a string. Solution: Accept any type of variable. (closes #5412) | ||||
* | Update a few runtime files. | Bram Moolenaar | 2020-01-02 | 7 | -13/+19 |
| | |||||
* | patch 8.2.0077: settagstack() cannot truncate at current indexv8.2.0077 | Bram Moolenaar | 2020-01-02 | 1 | -4/+14 |
| | | | | | Problem: settagstack() cannot truncate at current index. Solution: Add the "t" action. (Yegappan Lakshmanan, closes #5417) | ||||
* | patch 8.2.0074: Python 3 unicode test someitmes failsv8.2.0074 | Bram Moolenaar | 2020-01-01 | 2 | -2/+2 |
| | | | | | Problem: Python 3 unicode test someitmes fails. Solution: Make 'termencoding' empty. Correct number of error message. | ||||
* | patch 8.2.0054: :diffget and :diffput don't have good completionv8.2.0054 | Bram Moolenaar | 2019-12-29 | 1 | -0/+1 |
| | | | | | Problem: :diffget and :diffput don't have good completion. Solution: Add proper completion. (Dominique Pelle, closes #5409) | ||||
* | patch 8.2.0047: cannot skip tests for specific MS-Windows platformv8.2.0047 | Bram Moolenaar | 2019-12-27 | 1 | -0/+7 |
| | | | | | Problem: Cannot skip tests for specific MS-Windows platform. Solution: Add windowsversion(). | ||||
* | Update runtime files. | Bram Moolenaar | 2019-12-26 | 27 | -199/+184 |
| | |||||
* | Update runtime files. | Bram Moolenaar | 2019-12-19 | 6 | -15/+34 |
| | |||||
* | patch 8.2.0019: cannot number of lines of another bufferv8.2.0019 | Bram Moolenaar | 2019-12-17 | 1 | -0/+2 |
| | | | | | | Problem: Cannot number of lines of another buffer. Solution: Add "linecount" to getbufinfo(). (Yasuhiro Matsumoto, closes #5370) | ||||
* | patch 8.2.0017: OS/2 and MS-DOS are still mentionedv8.2.0017 | Bram Moolenaar | 2019-12-17 | 16 | -126/+113 |
| | | | | | | Problem: OS/2 and MS-DOS are still mentioned, even though support was removed long ago. Solution: Update documentation. (Yegappan Lakshmanan, closes #5368) | ||||
* | Vim 8.2 releasev8.2.0000v8.2.0 | Bram Moolenaar | 2019-12-12 | 137 | -139/+137 |
| | |||||
* | Minor runtime file updates. | Bram Moolenaar | 2019-12-11 | 5 | -7/+91 |
| | |||||
* | Update a few runtime files. | Bram Moolenaar | 2019-12-09 | 4 | -15/+16 |
| | |||||
* | Runtime file updates. | Bram Moolenaar | 2019-12-08 | 3 | -13/+86 |
| | |||||
* | Runtime file updates. | Bram Moolenaar | 2019-12-07 | 27 | -207/+278 |
| | |||||
* | Update runtime files. | Bram Moolenaar | 2019-12-05 | 2 | -3/+195 |
| | |||||
* | Update version 8.2 notes and make syntax. | Bram Moolenaar | 2019-12-04 | 1 | -4/+7 |
| |