summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2020-04-03patch 8.2.0508: Vim9: func and partial types not done yetv8.2.0508Bram Moolenaar
Problem: Vim9: func and partial types not done yet Solution: Fill in details about func declaration, drop a separate partial declaration.
2020-04-01patch 8.2.0493: Vim9: some error messages not testedv8.2.0493Bram Moolenaar
Problem: Vim9: some error messages not tested. Solution: Add more tests. Fix uncovered bugs.
2020-04-01patch 8.2.0491: cannot recognize a <script> mapping using maparg()v8.2.0491Bram Moolenaar
Problem: Cannot recognize a <script> mapping using maparg(). Solution: Add the "script" key. (closes #5873)
2020-03-29patch 8.2.0478: new buffers are not added to the Buffers menuv8.2.0478Bram Moolenaar
Problem: New buffers are not added to the Buffers menu. Solution: Turn number into string. (Yee Cheng Chin, closes #5864)
2020-03-27Update runtime filesBram Moolenaar
2020-03-26patch 8.2.0459: cannot check if a function name is correctv8.2.0459Bram Moolenaar
Problem: Cannot check if a function name is correct. Solution: Add "?funcname" to exists().
2020-03-26patch 8.2.0455: cannot set the highlight group for a specific terminalv8.2.0455Bram Moolenaar
Problem: Cannot set the highlight group for a specific terminal. Solution: Add the "highlight" option to term_start(). (closes #5818)
2020-03-25patch 8.2.0448: various functions not properly testedv8.2.0448Bram Moolenaar
Problem: Various functions not properly tested. Solution: Add more tests, especially for failures. (Yegappan Lakshmanan, closes #5843)
2020-03-22patch 8.2.0427: it is not possible to check for a typo in a feature namev8.2.0427Bram Moolenaar
Problem: It is not possible to check for a typo in a feature name. Solution: Add an extra argument to has().
2020-03-19Update runtime filesBram Moolenaar
2020-03-19patch 8.2.0415: bsdl filetype is not detectedv8.2.0415Bram Moolenaar
Problem: Bsdl filetype is not detected. Solution: Add an entry in the filetype list. (Daniel Kho, closes #5810)
2020-03-19patch 8.2.0413: buffer menu does not handle special buffers properlyv8.2.0413Bram Moolenaar
Problem: Buffer menu does not handle special buffers properly. Solution: Keep a dictionary with buffer names to reliably keep track of entries. Also trigger BufFilePre and BufFilePost for command-line and terminal buffers when the name changes.
2020-03-15patch 8.2.0385: menu functionality insufficiently testedv8.2.0385Bram Moolenaar
Problem: Menu functionality insufficiently tested. Solution: Add tests. Add menu_info(). (Yegappan Lakshmanan, closes #5760)
2020-03-14Update runtime filesBram Moolenaar
2020-03-06patch 8.2.0360: yaml files are only recognized by the file extensionv8.2.0360Bram Moolenaar
Problem: Yaml files are only recognized by the file extension. Solution: Check for a line starting with "%YAML". (Jason Franklin)
2020-03-05patch 8.2.0357: cannot delete a text property matching both id and typev8.2.0357Bram Moolenaar
Problem: Cannot delete a text property matching both id and type. (Axel Forsman) Solution: Add the "both" argument.
2020-03-01Update runtime filesBram Moolenaar
2020-02-29patch 8.2.0335: no completion for :disassemblev8.2.0335Bram Moolenaar
Problem: No completion for :disassemble. Solution: Make completion work. Also complete script-local functions if the name starts with "s:".
2020-02-26patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar
Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
2020-02-26Update runtime files.Bram Moolenaar
2020-02-22patch 8.2.0299: Vim9: ISN_STORE with argument not testedv8.2.0299Bram Moolenaar
Problem: Vim9: ISN_STORE with argument not tested. Some cases in tv2bool() not tested. Solution: Add tests. Add test_unknown() and test_void().
2020-02-22patch 8.2.0298: Vim9 script: cannot start command with a string constantv8.2.0298Bram Moolenaar
Problem: Vim9 script: cannot start command with a string constant. Solution: Recognize expression starting with '('.
2020-02-22patch 8.2.0296: mixing up "long long" and __int64 may cause problemsv8.2.0296Bram Moolenaar
Problem: Mixing up "long long" and __int64 may cause problems. (John Marriott) Solution: Pass varnumber_T to vim_snprintf(). Add v:numbersize.
2020-02-21patch 8.2.0294: cannot use Ex command that is also a function namev8.2.0294Bram Moolenaar
Problem: Cannot use Ex command that is also a function name. Solution: Recognize an Ex command by a colon prefix.
2020-02-20patch 8.2.0286: cannot use popup_close() for a terminal popupv8.2.0286Bram Moolenaar
Problem: Cannot use popup_close() for a terminal popup. Solution: Allow using popup_close(). (closes #5666)
2020-02-15Update runtime files.Bram Moolenaar
2020-02-14patch 8.2.0258: modifyOtherKeys cannot be temporarily disabledv8.2.0258Bram Moolenaar
Problem: ModifyOtherKeys cannot be temporarily disabled. Solution: Add echoraw() with an example for modifyOtherKeys.
2020-02-14patch 8.2.0257: cannot recognize a terminal in a popup windowv8.2.0257Bram Moolenaar
Problem: Cannot recognize a terminal in a popup window. Solution: Add the win_gettype() function.
2020-02-12patch 8.2.0250: test_clear_search_pat() is unusedv8.2.0250Bram Moolenaar
Problem: test_clear_search_pat() is unused. Solution: Remove the function. (Yegappan Lakshmanan, closes #5624)
2020-02-08patch 8.2.0233: crash when using garbagecollect() in between rand()v8.2.0233Bram Moolenaar
Problem: Crash when using garbagecollect() in between rand(). Solution: Redesign the rand() and srand() implementation. (Yasuhiro Matsumoto, closes #5587, closes #5588)
2020-02-05patch 8.2.0212: missing search/substitute pattern hardly testedv8.2.0212Bram Moolenaar
Problem: Missing search/substitute pattern hardly tested. Solution: Add test_clear_search_pat() and tests. (Yegappan Lakshmanan, closes #5579)
2020-02-04Update runtime files.Bram Moolenaar
2020-02-04patch 8.2.0208: fnamemodify() does not apply ":~" when followed by ":."v8.2.0208Bram Moolenaar
Problem: Fnamemodify() does not apply ":~" when followed by ":.". Solution: Don't let a failing ":." cause the ":~" to be skipped. (Yasuhiro Matsumoto, closes #5577)
2020-01-31patch 8.2.0190: Kotlin files are not recognizedv8.2.0190Bram Moolenaar
Problem: Kotlin files are not recognized. Solution: Detect Kotlin files. (Alkeryn, closes #5560)
2020-01-27patch 8.2.0161: not recognizing .gv file as dot filetypev8.2.0161Bram Moolenaar
Problem: Not recognizing .gv file as dot filetype. Solution: Add *.gv to dot pattern. (closes #5544)
2020-01-26patch 8.2.0158: triggering CompleteDone earlier is not backwards compatiblev8.2.0158Bram Moolenaar
Problem: Triggering CompleteDone earlier is not backwards compatible. (Daniel Hahler) Solution: Add CompleteDonePre instead.
2020-01-26patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar
Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
2020-01-25Update runtime files.Bram Moolenaar
2020-01-22patch 8.2.0141: no swift filetype detectionv8.2.0141Bram Moolenaar
Problem: No swift filetype detection. Solution: Add swift, swiftgyb and sil. (Emir Sarı, closes #5517)
2020-01-21Update runtime files.Bram Moolenaar
2020-01-21patch 8.2.0140: CI does not test building doc tagsv8.2.0140Bram Moolenaar
Problem: CI does not test building doc tags. Solution: Add the vimtags/gcc build. Cleanup showing version. (Ozaki Kiichi, closes #5513)
2020-01-18patch 8.2.0128: cannot list options one per linev8.2.0128Bram Moolenaar
Problem: Cannot list options one per line. Solution: Use ":set!" to list one option per line.
2020-01-17patch 8.2.0123: complete_info() does not work when CompleteDone is triggeredv8.2.0123Bram Moolenaar
Problem: complete_info() does not work when CompleteDone is triggered. Solution: Trigger CompleteDone before clearing the info.
2020-01-16patch 8.2.0122: readme files still mention MS-DOSv8.2.0122Bram Moolenaar
Problem: Readme files still mention MS-DOS. Solution: Update readme files. (Ken Takata, closes #5486)
2020-01-14Update runtime files.Bram Moolenaar
2020-01-10patch 8.2.0110: prop_find() is not implementedv8.2.0110Bram Moolenaar
Problem: prop_find() is not implemented. Solution: Implement prop_find(). (Ryan Hackett, closes #5421, closes #4970)
2020-01-09Update runtime files.Bram Moolenaar
2020-01-08patch 8.2.0106: printf formats are not exactly rightv8.2.0106Bram Moolenaar
Problem: Printf formats are not exactly right. Solution: Adjust signed/unsigned conversions. (Frazer Clews, closes #5456)
2020-01-06patch 8.2.0095: cannot specify exit code for :cquitv8.2.0095Bram Moolenaar
Problem: Cannot specify exit code for :cquit. Solution: Add optional argument. (Thinca, Yegappan Lakshmanan, closes #5442)
2020-01-05patch 8.2.0088: insufficient tests for tags; bug in using extra tag fieldv8.2.0088Bram Moolenaar
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)