summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
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)
2022-01-20patch 8.2.4153: MS-Windows: Global IME is no longer supportedv8.2.4153K.Takata
Problem: MS-Windows: Global IME is no longer supported. Solution: Remove the Global IME implementation. (Ken Takata, closes #9562)
2022-01-18patch 8.2.4140: maparg() does not indicate the type of scriptv8.2.4140Bram Moolenaar
Problem: maparg() does not indicate the type of script where it was defined. Solution: Add "scriptversion".
2022-01-18patch 8.2.4136: Vim9: the "autoload" argument of ":vim9script" is not usefulv8.2.4136Bram Moolenaar
Problem: Vim9: the "autoload" argument of ":vim9script" is not useful. Solution: Remove the argument. (closes #9555)
2022-01-18patch 8.2.4135: Vim9: ":scriptnames" shows unloaded imported autoload scriptv8.2.4135Bram Moolenaar
Problem: Vim9: ":scriptnames" shows unloaded imported autoload script. Solution: Mark the unloaded script with "A". (closes #9552)
2022-01-16Update runtime filesBram Moolenaar
2022-01-16patch 8.2.4107: script context not restored after using <ScriptCmd>v8.2.4107Bram Moolenaar
Problem: Script context not restored after using <ScriptCmd>. Solution: Also restore context when not in a script. (closes #9536) Add the 'c' flag to feedkeys() to be able to test this.
2022-01-15patch 8.2.4099: Vim9: cannot use Vim9 syntax in mappingv8.2.4099Bram Moolenaar
Problem: Vim9: cannot use Vim9 syntax in mapping. Solution: Add <ScriptCmd> to use the script context for a command.
2022-01-15patch 8.2.4095: sed script not recognized by the first linev8.2.4095Bram Moolenaar
Problem: Sed script not recognized by the first line. Solution: Recognize a sed script starting with "#n". (Doug Kearns)
2022-01-15patch 8.2.4093: cached breakindent values not initialized properlyv8.2.4093Christian Brabandt
Problem: Cached breakindent values not initialized properly. Solution: Initialize and cache formatlistpat. (Christian Brabandt, closes #9526, closes #9512)
2022-01-14patch 8.2.4088: xxd cannot output everything in one linev8.2.4088Erik Auerswald
Problem: Xxd cannot output everything in one line. Solution: Make zero columns mean infinite columns. (Erik Auerswald, closes #9524)
2022-01-13patch 8.2.4087: cannot test items from an autoload script easilyv8.2.4087Bram Moolenaar
Problem: Cannot test items from an autoload script easily. Solution: Add the "autoload" value for test_override().
2022-01-13patch 8.2.4077: not all Libsensors files are recognizedv8.2.4077Bram Moolenaar
Problem: Not all Libsensors files are recognized. Solution: Add "sensors.d/*" pattern. (Doug Kearns)
2022-01-11patch 8.2.4064: foam files are not detectedv8.2.4064Elwardi
Problem: Foam files are not detected. Solution: Detect the foam filetype by the path and file contents. (Mohammed Elwardi Fadeli, closes #9501)
2022-01-10patch 8.2.4052: not easy to resize a window from a pluginv8.2.4052Daniel Steinberg
Problem: Not easy to resize a window from a plugin. Solution: Add win_move_separator() and win_move_statusline() functions. (Daniel Steinberg, closes #9486)
2022-01-09patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar
Problem: Vim9: need to prefix every item in an autoload script. Solution: First step in supporting "vim9script autoload" and "import autoload".
2022-01-08Update runtime filesBram Moolenaar
2022-01-06patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar
Problem: Vim9: import mechanism is too complicated. Solution: Do not use the Javascript mechanism but a much simpler one.
2022-01-05patch 8.2.4014: git and gitcommit file types not properly recognizedv8.2.4014Bram Moolenaar
Problem: Git and gitcommit file types not properly recognized. Solution: Adjust filetype detection. (Tim Pope, closes #9477)
2022-01-03patch 8.2.3995: not all sshconfig files are detected as suchv8.2.3995David Auer
Problem: Not all sshconfig files are detected as such. Solution: Adjust the patterns used for sshconfig detection. (David Auer, closes #9322)
2022-01-02patch 8.2.3979: Vim9: the feature is not mentioned in the right placesv8.2.3979Bram Moolenaar
Problem: Vim9: the feature is not mentioned in the right places. Solution: Add +vim9script to the help and :version output.
2022-01-01patch 8.2.3969: value of MAXCOL not available in Vim scriptv8.2.3969naohiro ono
Problem: Value of MAXCOL not available in Vim script. Solution: Add v:maxcol. (Naohiro Ono, closes #9451)
2022-01-01patch 8.2.3965: Vim9: no easy way to check if Vim9 script is supportedv8.2.3965Bram Moolenaar
Problem: Vim9: no easy way to check if Vim9 script is supported. Solution: Add has('vim9script').
2022-01-01patch 8.2.3964: some common lisp and scheme files not recognizedv8.2.3964Alex Vear
Problem: Some common lisp and scheme files not recognized. Solution: Recognize *.asd as lisp and *.sld as scheme. (Alex Vear, closes #9447)
2021-12-30Update runtime filesBram Moolenaar
2021-12-29patch 8.2.3941: SIGTSTP is not handledv8.2.3941dbivolaru
Problem: SIGTSTP is not handled. Solution: Handle SIGTSTP like pressing CTRL-Z. (closes #9422)
2021-12-28patch 8.2.3919: Vim9: wrong argument for append() results in two errorsv8.2.3919Bram Moolenaar
Problem: Vim9: wrong argument for append() results in two errors. Solution: Check did_emsg. Also for setline(). Adjust the help for appendbufline().
2021-12-27Update runtime filesBram Moolenaar
2021-12-27patch 8.2.3917: the eval.txt help file is way too bigv8.2.3917Bram Moolenaar
Problem: The eval.txt help file is way too big. Solution: Move the builtin function details to a separate file.
2021-12-27patch 8.2.3913: help for expressions does not mention Vim9 syntaxv8.2.3913Bram Moolenaar
Problem: Help for expressions does not mention Vim9 syntax. Solution: Add the rules for Vim9 to the expression help. Rename functions to match the help.
2021-12-27patch 8.2.3909: Containerfile using prefix name not recognizedv8.2.3909Bram Moolenaar
Problem: Containerfile using prefix name not recognized. Solution: Recognize Containerfile.*.
2021-12-26patch 8.2.3908: cannot use a script-local function for 'foldtext'v8.2.3908Yegappan Lakshmanan
Problem: Cannot use a script-local function for 'foldtext'. Solution: Expand "s:" and "<SID>". (Yegappan Lakshmanan, closes #9411)
2021-12-26patch 8.2.3906: Vim9 help still contains "under development" warningsv8.2.3906Bram Moolenaar
Problem: Vim9 help still contains "under development" warnings. Solution: Remove the explicit warning.
2021-12-26patch 8.2.3905: Dockerfile using prefix name not recognizedv8.2.3905Bram Moolenaar
Problem: Dockerfile using prefix name not recognized. Solution: Recognize Dockerfile.*. (closes #9410)
2021-12-26patch 8.2.3901: Vim9: Cannot set 'cpo' in main .vimrc if using Vim9 scriptv8.2.3901Bram Moolenaar
Problem: Vim9: Cannot set 'cpo' in main .vimrc if using Vim9 script. Solution: Do not restore 'cpo' at the end of the main .vimrc.
2021-12-26patch 8.2.3900: it is not easy to use a script-local function for an optionv8.2.3900Yegappan Lakshmanan
Problem: It is not easy to use a script-local function for an option. Solution: recognize s: and <SID> at the start of the expression. (Yegappan Lakshmanan, closes #9401)
2021-12-24patch 8.2.3888: the argument list may contain duplicatesv8.2.3888Nir Lichtman
Problem: The argument list may contain duplicates. Solution: Add the :argdedeupe command. (Nir Lichtman, closes #6235)
2021-12-24Update runtime filesBram Moolenaar
2021-12-24patch 8.2.3880: Solution filter files are not recognizedv8.2.3880Bram Moolenaar
Problem: Solution filter files are not recognized. Solution: Add pattern *.slnf and use json. (Doug Kearns)
2021-12-22patch 8.2.3874: cannot highlight the number column for a signv8.2.3874James McCoy
Problem: Cannot highlight the number column for a sign. Solution: Add the "numhl" argument. (James McCoy, closes #9381)
2021-12-22patch 8.2.3873: go.mod files are not recognizedv8.2.3873Bram Moolenaar
Problem: go.mod files are not recognized. Solution: Check for the file name. (closes #9380)
2021-12-21patch 8.2.3864: cannot disable requesting key codes from xtermv8.2.3864Bram Moolenaar
Problem: Cannot disable requesting key codes from xterm. Solution: Add the 'xtermcodes' option, default on.
2021-12-19patch 8.2.3849: functions implementing reduce and map are too longv8.2.3849Yegappan Lakshmanan
Problem: Functions implementing reduce and map are too long. Solution: Use a function for each type of value. Add a few more test cases and add to the help. (Yegappan Lakshmanan, closes #9370)