summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2022-09-07patch 9.0.0402: javascript module files are not recoginzedv9.0.0402Brett Holman
Problem: Javascript module files are not recoginzed. Solution: Recognize "*.jsm" files as Javascript. (Brett Holman, closes #11069)
2022-09-04Update runtime filesBram Moolenaar
2022-09-04patch 9.0.0379: cleaning up after writefile() is a hasslev9.0.0379Bram Moolenaar
Problem: Cleaning up after writefile() is a hassle. Solution: Add the 'D' flag to defer deleting the written file. Very useful in tests.
2022-09-03patch 9.0.0370: cleaning up afterwards can make a function messyv9.0.0370Bram Moolenaar
Problem: Cleaning up afterwards can make a function messy. Solution: Add the :defer command.
2022-09-01patch 9.0.0349: filetype of *.sil files not well detectedv9.0.0349Bram Moolenaar
Problem: Filetype of *.sil files not well detected. Solution: Inspect the file contents to guess the filetype.
2022-09-01patch 9.0.0347: MS-Windows: cannot set cursor shape in Windows Terminalv9.0.0347K.Takata
Problem: MS-Windows: cannot set cursor shape in Windows Terminal. Solution: Make cursor shape work with Windows Terminal. (Ken Takata, closes #11028, closes #6576)
2022-09-01patch 9.0.0346: :horizontal modifier not fully supportedv9.0.0346zeertzjq
Problem: :horizontal modifier not fully supported. Solution: Also use :horizontal for completion and user commands. (closes #11025)
2022-09-01patch 9.0.0345: error message for list argument could be clearerv9.0.0345Bram Moolenaar
Problem: Error message for list argument could be clearer. Solution: Include the argument number. (Yegappan Lakshmanan, closes #11027)
2022-08-31patch 9.0.0342: ":wincmd =" equalizes in two directionsv9.0.0342Bram Moolenaar
Problem: ":wincmd =" equalizes in two directions. Solution: Make ":vertical wincmd =" equalize vertically only and ":horizontal wincmd =" equalize horizontally only.
2022-08-31patch 9.0.0340: the 'cmdheight' zero support causes too much troublev9.0.0340Bram Moolenaar
Problem: The 'cmdheight' zero support causes too much trouble. Solution: Revert support for 'cmdheight' being zero.
2022-08-30Update runtime filesBram Moolenaar
2022-08-29patch 9.0.0321: cannot use the message popup window directlyv9.0.0321Bram Moolenaar
Problem: Cannot use the message popup window directly. Solution: Add ":echowindow".
2022-08-29patch 9.0.0319: Godot shader files are not recognizedv9.0.0319Maxim Kim
Problem: Godot shader files are not recognized. Solution: Add patterns for "gdshader". (Maxim Kim, closes #11006)
2022-08-29patch 9.0.0314: VDM files are not recognizedv9.0.0314Alessandro Pezzoni
Problem: VDM files are not recognized. Solution: Add patterns for VDM files. (Alessandro Pezzoni, closes #11004)
2022-08-28patch 9.0.0303: it is not easy to get information about a scriptv9.0.0303Yegappan Lakshmanan
Problem: It is not easy to get information about a script. Solution: Make getscriptinf() return the version. When selecting a specific script return functions and variables. (Yegappan Lakshmanan, closes #10991)
2022-08-27patch 9.0.0288: when 'cmdheight' is zero some messages are not displayedv9.0.0288Bram Moolenaar
Problem: When 'cmdheight' is zero some messages are not displayed. Solution: Use a popup notification window.
2022-08-27patch 9.0.0285: it is not easy to change the command line from a pluginv9.0.0285Shougo Matsushita
Problem: It is not easy to change the command line from a plugin. Solution: Add setcmdline(). (Shougo Matsushita, closes #10869)
2022-08-26Update runtime filesBram Moolenaar
2022-08-26patch 9.0.0280: the builtin termcap list depends on the versionv9.0.0280Bram Moolenaar
Problem: The builtin termcap list depends on the version. Solution: Always include all termcap entries. Remove duplicate lines.
2022-08-26patch 9.0.0279: the tiny version has the popup menu but not 'wildmenu'v9.0.0279Bram Moolenaar
Problem: The tiny version has the popup menu but not 'wildmenu'. Solution: Graduate the wildmenu feature.
2022-08-26patch 9.0.0278: the +wildignore feature is nearly always availablev9.0.0278Bram Moolenaar
Problem: The +wildignore feature is nearly always available. Solution: Graduate +wildignore for consistency.
2022-08-25patch 9.0.0270: some values of 'path' and 'tags' invalid in the tiny versionv9.0.0270Bram Moolenaar
Problem: Some values of 'path' and 'tags' do not work in the tiny version. Solution: Graduate the +path_extra feature.
2022-08-25patch 9.0.0269: getscriptinfo() does not include the versionv9.0.0269Yegappan Lakshmanan
Problem: getscriptinfo() does not include the version. Cannot select entries by script name. Solution: Add the "version" item and the "name" argument. (Yegappan Lakshmanan, closes #10962)
2022-08-25patch 9.0.0265: no good reason why the "gf" command isn't in the tiny versionv9.0.0265Bram Moolenaar
Problem: No good reason why the "gf" command is not in the tiny version. Solution: Graduate the file_in_path feature.
2022-08-25patch 9.0.0261: bufload() reads a file even if the name is not a file namev9.0.0261Bram Moolenaar
Problem: bufload() reads a file even if the name is not a file name. (Cyker Way) Solution: Do not read the file when the buffer name is not a file name. (closes #10975)
2022-08-24Update runtime filesBram Moolenaar
2022-08-24patch 9.0.0253: a symlink to an autoload script results in two entriesv9.0.0253Bram Moolenaar
Problem: A symlink to an autoload script results in two entries in the list of scripts, items expected in one are actually in the other. Solution: Have one script item refer to the actually sourced one. (closes #10960)
2022-08-23patch 9.0.0247: cannot add padding to virtual text without highlightv9.0.0247Bram Moolenaar
Problem: Cannot add padding to virtual text without highlight. Solution: Add the "text_padding_left" argument. (issue #10906)
2022-08-22patch 9.0.0244: cannot easily get the list of sourced scriptsv9.0.0244Yegappan Lakshmanan
Problem: Cannot easily get the list of sourced scripts. Solution: Add the getscriptinfo() function. (Yegappan Lakshmanan, closes #10957)
2022-08-19Update runtime filesBram Moolenaar
2022-08-16patch 9.0.0222: no good reason why text objects are only in larger buildsv9.0.0222Bram Moolenaar
Problem: No good reason why text objects are only in larger builds. Solution: Graduate +textobjects.
2022-08-15Update runtime filesBram Moolenaar
2022-08-13patch 9.0.0202: code and help for indexof() is not idealv9.0.0202Yegappan Lakshmanan
Problem: Code and help for indexof() is not ideal. Solution: Refactor the code, improve the help. (Yegappan Lakshmanan, closes #10908)
2022-08-13patch 9.0.0197: astro files are not detectedv9.0.0197Emilia Zapata
Problem: Astro files are not detected. Solution: Add a pattern to match Astro files. (Emilia Zapata, closes #10904)
2022-08-13patch 9.0.0196: finding value in list may require a for loopv9.0.0196Yegappan Lakshmanan
Problem: Finding value in list may require a for loop. Solution: Add indexof(). (Yegappan Lakshmanan, closes #10903)
2022-08-12patch 9.0.0195: metafun files are not recogizedv9.0.0195Bram Moolenaar
Problem: Metafun files are not recogized. Solution: Add filetype detection patterns.
2022-08-10patch 9.0.0182: quarto files are not recognizedv9.0.0182smjonas
Problem: Quarto files are not recognized. Solution: Recognize quarto files by the extension. (Jonas Strittmatter, closes #10880)
2022-08-08Update runtime filesBram Moolenaar
2022-08-05patch 9.0.0144: text property cannot override 'cursorline' highlightv9.0.0144Bram Moolenaar
Problem: Text property cannot override 'cursorline' highlight. Solution: Add the "override" flag to prop_type_add(). (closes #5533, closes #8225).
2022-08-05patch 9.0.0141: "delmenu" does not remove autocmmandsv9.0.0141zeertzjq
Problem: "delmenu" does not remove autocmmands. Running menu test function alone fails. Solution: Delete autocommands Make sure there is at least one menu. (closes #10848)
2022-08-01patch 9.0.0131: virtual text with Tab is not displayed correctlyv9.0.0131Bram Moolenaar
Problem: Virtual text with Tab is not displayed correctly. Solution: Change any Tab to a space.
2022-08-01Update runtime filesBram Moolenaar
2022-07-31patch 9.0.0121: cannot put virtual text after or below a linev9.0.0121Bram Moolenaar
Problem: Cannot put virtual text after or below a line. Solution: Add "text_align" and "text_wrap" arguments.
2022-07-31patch 9.0.0118: no test for what patch 9.0.0155 fixesv9.0.0118zeertzjq
Problem: No test for what patch 9.0.0155 fixes. Solution: Add a test. Fix typos. (closes #10822)
2022-07-30patch 9.0.0114: the command line takes up space even when not usedv9.0.0114Shougo Matsushita
Problem: The command line takes up space even when not used. Solution: Allow for 'cmdheight' to be set to zero. (Shougo Matsushita, closes #10675, closes #940)
2022-07-30patch 9.0.0111: "nocombine" is missing from synIDattr()v9.0.0111Bram Moolenaar
Problem: "nocombine" is missing from synIDattr(). Solution: Add "nocombine". (Muni Tanjim, closes #10816)
2022-07-30patch 9.0.0110: help tag generation picks up words in code examplesv9.0.0110Carlo Teubner
Problem: Help tag generation picks up words in code examples. Solution: Skip over examples. (Carlo Teubner, closes #10813)
2022-07-29Update runtime filesBram Moolenaar
2022-07-27patch 9.0.0093: sway config files are recognized as i3configv9.0.0093James Eapen
Problem: Sway config files are recognized as i3config. Solution: Recognize swayconfig separately. (James Eapen, closes #10672)
2022-07-27patch 9.0.0092: plugins cannot change v:completed_itemv9.0.0092Shougo Matsushita
Problem: Plugins cannot change v:completed_item. Solution: Make v:completed_item writeable. (Shougo Matsushita, closes #10801)