summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2022-03-08patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526Bram Moolenaar
Problem: Vim9: cannot set variables to a null value. Solution: Add null_list, null_job, etc.
2022-03-05patch 8.2.4511: filetype test failsv8.2.4511Bram Moolenaar
Problem: Filetype test fails. Solution: Change "endw" to "endwhile".
2022-03-03patch 8.2.4498: using <Plug> with "noremap" does not workv8.2.4498Bram Moolenaar
Problem: Using <Plug> with "noremap" does not work. Solution: Always remap <Plug>. (closes #9879, closes #9789)
2022-02-26Update runtime files.Bram Moolenaar
2022-02-24patch 8.2.4464: Dtrace files are recognized as filetype Dv8.2.4464=?UTF-8?q?Teubel=20Gy=C3=B6rgy?=
Problem: Dtrace files are recognized as filetype D. Solution: Add a pattern for Dtrace files. (Teubel György, closes #9841) Add some more testing.
2022-02-24patch 8.2.4463: completion only uses strict matchingv8.2.4463Yegappan Lakshmanan
Problem: Completion only uses strict matching. Solution: Add the "fuzzy" item for 'wildoptions'. (Yegappan Lakshmanan, closes #9803)
2022-02-23patch 8.2.4457: the GPM library can only be linked staticallyv8.2.4457Bram Moolenaar
Problem: The GPM library can only be linked statically. Solution: Make it possible to load the GPM library dynamically. (Damien)
2022-02-23patch 8.2.4455: accepting one and zero for second sort() argument is strangev8.2.4455Bram Moolenaar
Problem: Accepting one and zero for the second sort() argument is strange. Solution: Disallow using one and zero in Vim9 script.
2022-02-22patch 8.2.4448: filetype detection is failingv8.2.4448Bram Moolenaar
Problem: Filetype detection is failing. Solution: Do not use "s:" where it is no longer allowed.
2022-02-22patch 8.2.4447: Vim9: can still use s:var in a compiled functionv8.2.4447Bram Moolenaar
Problem: Vim9: can still use s:var in a compiled function. Solution: Disallow using s:var for Vim9 script. (closes #9824)
2022-02-20Update runtime filesBram Moolenaar
2022-02-19patch 8.2.4424: ".gts" and ".gjs" files are not recognizedv8.2.4424NullVoxPopuli
Problem: ".gts" and ".gjs" files are not recognized. Solution: Recognize Glimmer flavored typescript and javascript. (closes #9799)
2022-02-19patch 8.2.4420: menu translations are inconsistentv8.2.4420Ada
Problem: Menu translations are inconsistent. Solution: Add a Makefile to convert between encodings. (Ada (Haowen) Yu, closes #9801)
2022-02-18patch 8.2.4416: Vim9: using a script-local function requires using "s:"v8.2.4416Bram Moolenaar
Problem: Vim9: using a script-local function requires using "s:" when setting 'completefunc'. Solution: Do not require "s:" in Vim9 script. (closes #9796)
2022-02-18patch 8.2.4414: solidity files are not recognizedv8.2.4414=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: Solidity files are not recognized. Solution: Add the *.sol pattern. (Dundar Goc, closes #9792)
2022-02-17patch 8.2.4411: bicep files are not recognizedv8.2.4411=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: Bicep files are not recognized. Solution: Match *.bicep files. (Dundar Goc, closes #9791)
2022-02-13patch 8.2.4372: filetype detection from file contents is in legacy scriptv8.2.4372Bram Moolenaar
Problem: Filetype detection from file contents is in legacy script. Solution: Use a compiled function for filetype detection.
2022-02-12patch 8.2.4352: ReScript files are not recognizedv8.2.4352Ananda Umamil
Problem: ReScript files are not recognized. Solution: Add the *.res and *.resi patterns. (Ananda Umamil, closes #9752)
2022-02-11patch 8.2.4348: "legacy exe cmd" does not do what one would expectv8.2.4348Bram Moolenaar
Problem: "legacy exe cmd" does not do what one would expect. Solution: Apply the "legacy" and "vim9script" command modifiers to the argument of ":execute".
2022-02-11patch 8.2.4343: when reloading not all properties are detectedv8.2.4343Rob Pilling
Problem: When reloading not all properties are detected. Solution: Add the "edit" value to v:fcs_choice. (Rob Pilling, closes #9579)
2022-02-11Update runtime files. (closes #9741)Bram Moolenaar
2022-02-09Update runtime filesBram Moolenaar
2022-02-09patch 8.2.4335: no autocommand event triggered before changing directoryv8.2.4335Bram Moolenaar
Problem: No autocommand event triggered before changing directory. (Ronnie Magatti) Solution: Add DirChangedPre. (closes #9721)
2022-02-08patch 8.2.4329: no support for end line number and column in 'errorformat'v8.2.4329haya14busa
Problem: No support for end line number and column in 'errorformat'. Solution: Add %e and %k. (closes #9624)
2022-02-08patch 8.2.4325: 'wildmenu' only shows few matchesv8.2.4325Yegappan Lakshmanan
Problem: 'wildmenu' only shows few matches. Solution: Add the "pum" option: use a popup menu to show the matches. (Yegappan Lakshmanan et al., closes #9707)
2022-02-05patch 8.2.4305: tex filetype detection failsv8.2.4305Bram Moolenaar
Problem: Tex filetype detection fails. Solution: Check value to be positive. (closes #9704)
2022-02-04Update runtime files; use compiled functionsBram Moolenaar
2022-02-04Update runtime files.Bram Moolenaar
2022-02-01patch 8.2.4282: restricted mode requires the -Z command line optionv8.2.4282matveyt
Problem: Restricted mode requires the -Z command line option. Solution: Use restricted mode when $SHELL ends in "nologin" or "false". (closes #9681)
2022-01-31patch 8.2.4276: separate test function for the GUI scrollbarv8.2.4276Yegappan Lakshmanan
Problem: Separate test function for the GUI scrollbar. Solution: Use test_gui_event(). (Yegappan Lakshmanan, closes #9674)
2022-01-31patch 8.2.4274: Basic and form filetype detection is incompletev8.2.4274Doug Kearns
Problem: Basic and form filetype detection is incomplete. Solution: Add a separate function for .frm files. (Doug Kearns, closes #9675)
2022-01-31Update runtime filesBram Moolenaar
2022-01-31patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twicev8.2.4270ichizok
Problem: Generating nv_cmdidxs.h requires building Vim twice. Solution: Move the table into a separate file and use a separate executable to extract the command characters. (Ozaki Kiichi, closes #9669)
2022-01-30patch 8.2.4263: no test for the GUI find/replace dialogv8.2.4263Yegappan Lakshmanan
Problem: No test for the GUI find/replace dialog. Solution: Add a test function and a test. (Yegappan Lakshmanan, closes #9662)
2022-01-30patch 8.2.4259: number of test functions for GUI events is growingv8.2.4259Yegappan Lakshmanan
Problem: Number of test functions for GUI events is growing. Solution: Use one function with a dictionary. (Yegappan Lakshmanan, closes #9660)
2022-01-29Update runtime filesBram Moolenaar
2022-01-29patch 8.2.4252: generating the normal command table at runtime is inefficientv8.2.4252Yegappan Lakshmanan
Problem: Generating the normal command table at runtime is inefficient. Solution: Generate the table with a Vim script and put it in a header file. (Yegappan Lakshmanan, closes #9648)
2022-01-29patch 8.2.4251: vala files are not recognizedv8.2.4251Bram Moolenaar
Problem: Vala files are not recognized. Solution: Add the *.vala pattern. (closes #9654)
2022-01-29patch 8.2.4249: the timeout limit for spell suggestions is always 5000v8.2.4249Bram Moolenaar
Problem: The timeout limit for spell suggestions is always 5000 milli seconds. Solution: Add the "timeout" entry to 'spellsuggest'.
2022-01-28patch 8.2.4242: put in Visual mode cannot be repeatedv8.2.4242Shougo Matsushita
Problem: Put in Visual mode cannot be repeated. Solution: Use "P" to put without yanking the deleted text into the unnamed register. (Shougo Matsushita, closes #9591)
2022-01-28patch 8.2.4238: *.tf file could be fileytpe "tf" or "terraform"v8.2.4238=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: *.tf file could be fileytpe "tf" or "terraform". Solution: Detect the type from the file contents. (closes #9642)
2022-01-27patch 8.2.4228: no tests for clicking in the GUI tablinev8.2.4228Yegappan Lakshmanan
Problem: No tests for clicking in the GUI tabline. Solution: Add test functions to generate the events. Add tests using the functions. (Yegappan Lakshmanan, closes #9638)
2022-01-23patch 8.2.4196: various file types not recognizedv8.2.4196=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: Various file types not recognized. Solution: Add patterns to recognize more file types (closes #9607)
2022-01-23patch 8.2.4191: json5 files are not recognizedv8.2.4191=?UTF-8?q?Dundar=20G=C3=B6c?=
Problem: json5 files are not recognized. Solution: Add a pattern for json5 files. (closes #9601)
2022-01-23Update runtime filesBram Moolenaar
2022-01-23patch 8.2.4188: not all gitconfig files are recognizedv8.2.4188Tim Pope
Problem: Not all gitconfig files are recognized. Solution: Add a few more patterns. (Tim Pope, closes #9597)
2022-01-23patch 8.2.4187: gnuplot file not recognizedv8.2.4187nobodyatandnothing
Problem: Gnuplot file not recognized. Solution: Recognize ".gnuplot". (closes #9588)
2022-01-21patch 8.2.4172: filetype detection for BASIC is not optimalv8.2.4172Bram Moolenaar
Problem: Filetype detection for BASIC is not optimal. Solution: Improve BASIC filetype detection. (Doug Kearns)
2022-01-20patch 8.2.4160: cannot change the register used for Select mode deletev8.2.4160Shougo Matsushita
Problem: Cannot change the register used for Select mode delete. Solution: Make CTRL-R set the register to be used when deleting text for Select mode. (Shougo Matsushita, closes #9531)
2022-01-20patch 8.2.4157: terminal test fails because Windows sets the titlev8.2.4157ichizok
Problem: Terminal test fails because Windows sets the title. Solution: Add the "vterm_title" testing override and use it in the test. (Ozaki Kiichi, closes #9556)