summaryrefslogtreecommitdiff
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* Update runtime filesBram Moolenaar2022-01-1621-422/+463
|
* patch 8.2.4107: script context not restored after using <ScriptCmd>v8.2.4107Bram Moolenaar2022-01-161-0/+3
| | | | | | 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.
* patch 8.2.4099: Vim9: cannot use Vim9 syntax in mappingv8.2.4099Bram Moolenaar2022-01-151-6/+26
| | | | | Problem: Vim9: cannot use Vim9 syntax in mapping. Solution: Add <ScriptCmd> to use the script context for a command.
* patch 8.2.4095: sed script not recognized by the first linev8.2.4095Bram Moolenaar2022-01-151-0/+6
| | | | | Problem: Sed script not recognized by the first line. Solution: Recognize a sed script starting with "#n". (Doug Kearns)
* patch 8.2.4093: cached breakindent values not initialized properlyv8.2.4093Christian Brabandt2022-01-151-0/+1
| | | | | | Problem: Cached breakindent values not initialized properly. Solution: Initialize and cache formatlistpat. (Christian Brabandt, closes #9526, closes #9512)
* patch 8.2.4088: xxd cannot output everything in one linev8.2.4088Erik Auerswald2022-01-142-1/+3
| | | | | | Problem: Xxd cannot output everything in one line. Solution: Make zero columns mean infinite columns. (Erik Auerswald, closes #9524)
* patch 8.2.4087: cannot test items from an autoload script easilyv8.2.4087Bram Moolenaar2022-01-131-7/+9
| | | | | Problem: Cannot test items from an autoload script easily. Solution: Add the "autoload" value for test_override().
* patch 8.2.4077: not all Libsensors files are recognizedv8.2.4077Bram Moolenaar2022-01-131-0/+3
| | | | | Problem: Not all Libsensors files are recognized. Solution: Add "sensors.d/*" pattern. (Doug Kearns)
* patch 8.2.4064: foam files are not detectedv8.2.4064Elwardi2022-01-112-0/+20
| | | | | | Problem: Foam files are not detected. Solution: Detect the foam filetype by the path and file contents. (Mohammed Elwardi Fadeli, closes #9501)
* patch 8.2.4052: not easy to resize a window from a pluginv8.2.4052Daniel Steinberg2022-01-102-0/+33
| | | | | | Problem: Not easy to resize a window from a plugin. Solution: Add win_move_separator() and win_move_statusline() functions. (Daniel Steinberg, closes #9486)
* patch 8.2.4050: Vim9: need to prefix every item in an autoload scriptv8.2.4050Bram Moolenaar2022-01-092-21/+28
| | | | | | Problem: Vim9: need to prefix every item in an autoload script. Solution: First step in supporting "vim9script autoload" and "import autoload".
* Update runtime filesBram Moolenaar2022-01-0838-280/+341
|
* patch 8.2.4019: Vim9: import mechanism is too complicatedv8.2.4019Bram Moolenaar2022-01-061-16/+22
| | | | | Problem: Vim9: import mechanism is too complicated. Solution: Do not use the Javascript mechanism but a much simpler one.
* patch 8.2.4014: git and gitcommit file types not properly recognizedv8.2.4014Bram Moolenaar2022-01-052-7/+4
| | | | | Problem: Git and gitcommit file types not properly recognized. Solution: Adjust filetype detection. (Tim Pope, closes #9477)
* patch 8.2.3995: not all sshconfig files are detected as suchv8.2.3995David Auer2022-01-031-2/+2
| | | | | | Problem: Not all sshconfig files are detected as such. Solution: Adjust the patterns used for sshconfig detection. (David Auer, closes #9322)
* patch 8.2.3979: Vim9: the feature is not mentioned in the right placesv8.2.3979Bram Moolenaar2022-01-022-1/+3
| | | | | Problem: Vim9: the feature is not mentioned in the right places. Solution: Add +vim9script to the help and :version output.
* patch 8.2.3969: value of MAXCOL not available in Vim scriptv8.2.3969naohiro ono2022-01-012-9/+17
| | | | | Problem: Value of MAXCOL not available in Vim script. Solution: Add v:maxcol. (Naohiro Ono, closes #9451)
* patch 8.2.3965: Vim9: no easy way to check if Vim9 script is supportedv8.2.3965Bram Moolenaar2022-01-011-5/+2
| | | | | Problem: Vim9: no easy way to check if Vim9 script is supported. Solution: Add has('vim9script').
* patch 8.2.3964: some common lisp and scheme files not recognizedv8.2.3964Alex Vear2022-01-011-3/+3
| | | | | | Problem: Some common lisp and scheme files not recognized. Solution: Recognize *.asd as lisp and *.sld as scheme. (Alex Vear, closes #9447)
* Update runtime filesBram Moolenaar2021-12-309-822/+798
|
* patch 8.2.3941: SIGTSTP is not handledv8.2.3941dbivolaru2021-12-291-2/+2
| | | | | Problem: SIGTSTP is not handled. Solution: Handle SIGTSTP like pressing CTRL-Z. (closes #9422)
* patch 8.2.3919: Vim9: wrong argument for append() results in two errorsv8.2.3919Bram Moolenaar2021-12-281-3/+4
| | | | | | Problem: Vim9: wrong argument for append() results in two errors. Solution: Check did_emsg. Also for setline(). Adjust the help for appendbufline().
* Update runtime filesBram Moolenaar2021-12-2715-972/+1046
|
* patch 8.2.3917: the eval.txt help file is way too bigv8.2.3917Bram Moolenaar2021-12-275-10092/+10135
| | | | | Problem: The eval.txt help file is way too big. Solution: Move the builtin function details to a separate file.
* patch 8.2.3913: help for expressions does not mention Vim9 syntaxv8.2.3913Bram Moolenaar2021-12-272-119/+196
| | | | | | 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.
* patch 8.2.3909: Containerfile using prefix name not recognizedv8.2.3909Bram Moolenaar2021-12-271-1/+1
| | | | | Problem: Containerfile using prefix name not recognized. Solution: Recognize Containerfile.*.
* patch 8.2.3908: cannot use a script-local function for 'foldtext'v8.2.3908Yegappan Lakshmanan2021-12-261-1/+6
| | | | | Problem: Cannot use a script-local function for 'foldtext'. Solution: Expand "s:" and "<SID>". (Yegappan Lakshmanan, closes #9411)
* patch 8.2.3906: Vim9 help still contains "under development" warningsv8.2.3906Bram Moolenaar2021-12-261-16/+6
| | | | | Problem: Vim9 help still contains "under development" warnings. Solution: Remove the explicit warning.
* patch 8.2.3905: Dockerfile using prefix name not recognizedv8.2.3905Bram Moolenaar2021-12-261-0/+4
| | | | | Problem: Dockerfile using prefix name not recognized. Solution: Recognize Dockerfile.*. (closes #9410)
* patch 8.2.3901: Vim9: Cannot set 'cpo' in main .vimrc if using Vim9 scriptv8.2.3901Bram Moolenaar2021-12-262-0/+11
| | | | | Problem: Vim9: Cannot set 'cpo' in main .vimrc if using Vim9 script. Solution: Do not restore 'cpo' at the end of the main .vimrc.
* patch 8.2.3900: it is not easy to use a script-local function for an optionv8.2.3900Yegappan Lakshmanan2021-12-264-0/+42
| | | | | | 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)
* patch 8.2.3888: the argument list may contain duplicatesv8.2.3888Nir Lichtman2021-12-242-2/+10
| | | | | Problem: The argument list may contain duplicates. Solution: Add the :argdedeupe command. (Nir Lichtman, closes #6235)
* Update runtime filesBram Moolenaar2021-12-2428-451/+389
|
* patch 8.2.3880: Solution filter files are not recognizedv8.2.3880Bram Moolenaar2021-12-241-0/+1
| | | | | Problem: Solution filter files are not recognized. Solution: Add pattern *.slnf and use json. (Doug Kearns)
* patch 8.2.3874: cannot highlight the number column for a signv8.2.3874James McCoy2021-12-222-2/+11
| | | | | Problem: Cannot highlight the number column for a sign. Solution: Add the "numhl" argument. (James McCoy, closes #9381)
* patch 8.2.3873: go.mod files are not recognizedv8.2.3873Bram Moolenaar2021-12-221-1/+3
| | | | | Problem: go.mod files are not recognized. Solution: Check for the file name. (closes #9380)
* patch 8.2.3864: cannot disable requesting key codes from xtermv8.2.3864Bram Moolenaar2021-12-213-2/+29
| | | | | Problem: Cannot disable requesting key codes from xterm. Solution: Add the 'xtermcodes' option, default on.
* patch 8.2.3849: functions implementing reduce and map are too longv8.2.3849Yegappan Lakshmanan2021-12-191-5/+7
| | | | | | 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)
* patch 8.2.3848: cannot use reduce() for a stringv8.2.3848rbtnn2021-12-181-3/+4
| | | | | Problem: Cannot use reduce() for a string. Solution: Make reduce() work with a string. (Naruhiko Nishino, closes #9366)
* patch 8.2.3843: dep3patch files are not recognizedv8.2.3843James McCoy2021-12-172-0/+20
| | | | | | Problem: Dep3patch files are not recognized. Solution: Recognize dep3patch files by their location and content. (James McCoy, closes #9367)
* patch 8.2.3835: the inline-function example does not workv8.2.3835Bram Moolenaar2021-12-171-3/+6
| | | | | Problem: The inline-function example does not work. Solution: Drop ":let". Add EX_EXPR_ARG to CMD_var. (issue #9352)
* Update runtime filesBram Moolenaar2021-12-1623-452/+458
|
* patch 8.2.3818: cannot filter or map characters in a stringv8.2.3818rbtnn2021-12-151-24/+34
| | | | | | Problem: Cannot filter or map characters in a string. Solution: Make filter() and map() work on a string. (Naruhiko Nishino, closes #9327)
* patch 8.2.3814: .csx files and .sln files are not recognizedv8.2.3814Bram Moolenaar2021-12-151-1/+4
| | | | | Problem: .csx files and .sln files are not recognized. Solution: Add filetype patterns. (Doug Kearns)
* patch 8.2.3805: i3config files are not recognizedv8.2.3805Quentin Hibon2021-12-141-0/+4
| | | | | | Problem: i3config files are not recognized. Solution: Add patterns to match i3config files. (Quentin Hibon, closes #7969)
* patch 8.2.3797: no good reason to limit the message history in tiny versionv8.2.3797Bram Moolenaar2021-12-131-2/+1
| | | | | Problem: No good reason to limit the message history in the tiny version. Solution: Always use 200.
* patch 8.2.3795: too many #ifdefsv8.2.3795Bram Moolenaar2021-12-132-8/+1
| | | | | Problem: Too many #ifdefs. Solution: Graduate the jumplist feature.
* patch 8.2.3784: the help for options is outdatedv8.2.3784Bram Moolenaar2021-12-111-2/+16
| | | | | Problem: The help for options is outdated. Solution: Include all the recent changes.
* patch 8.2.3781: the option window script is outdatedv8.2.3781Bram Moolenaar2021-12-111-1/+1
| | | | | Problem: The option window script is outdated. Solution: Add several changes.
* patch 8.2.3780: ":cd" works differently on MS-Windowsv8.2.3780Bakudankun2021-12-113-5/+11
| | | | | Problem: ":cd" works differently on MS-Windows. Solution: Add the 'cdhome' option. (closes #9324)