summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2021-05-31patch 8.2.2915: MS-Windows: when using "default" for encoding utf-8 is usedv8.2.2915K.Takata
Problem: MS-Windows: when using "default" for encoding utf-8 is used. Solution: Use the system encoding. (Ken Takata, closes #8300)
2021-05-30patch 8.2.2914: cannot paste a block without adding paddingv8.2.2914Christian Brabandt
Problem: Cannot paste a block without adding padding. Solution: Add "zp" and "zP" which paste without adding padding. (Christian Brabandt, closes #8289)
2021-05-30Update runtime filesBram Moolenaar
2021-05-30patch 8.2.2912: MS-Windows: most users expect using Unicodev8.2.2912K.Takata
Problem: MS-Windows: most users expect using Unicode. Solution: Default 'encoding' to utf-8 on MS-Windows. (Ken Takata, closes #3907)
2021-05-29patch 8.2.2905: no error when defaults.vim cannot be loadedv8.2.2905Christian Brabandt
Problem: No error when defaults.vim cannot be loaded. Solution: Add an error message. (Christian Brabandt, closes #8248)
2021-05-23patch 8.2.2879: file extension .hsig not recognizedv8.2.2879Marcin Szamotulski
Problem: File extension .hsig not recognized. Solution: Use Haskell filetype for .hsig files. (Marcin Szamotulski, closes #8236)
2021-05-16Update runtime filesBram Moolenaar
2021-05-15patch 8.2.2854: custom statusline cannot contain % itemsv8.2.2854shadmansaleh
Problem: Custom statusline cannot contain % items. Solution: Add "%{% expr %}". (closes #8190)
2021-05-06patch 8.2.2839: default redirection missing "ash" and "dash"v8.2.2839Natanael Copa
Problem: Default redirection missing "ash" and "dash". Solution: Recognize "ash" and "dash". (Natanael Copa, closes #8180)
2021-05-06patch 8.2.2838: file extension .wrap not recognizedv8.2.2838Liam Beguin
Problem: File extension .wrap not recognized. Solution: Use dosini filetype for .wrap files. (Liam Beguin, closes #8177)
2021-05-02Update runtime filesBram Moolenaar
2021-04-26patch 8.2.2813: cannot grep using fuzzy matchingv8.2.2813Yegappan Lakshmanan
Problem: Cannot grep using fuzzy matching. Solution: Add the "f" flag to :vimgrep. (Yegappan Lakshmanan, closes #8152)
2021-04-24patch 8.2.2805: Vim9: cannot use legacy syntax in Vim9 scriptv8.2.2805Bram Moolenaar
Problem: Vim9: cannot use legacy syntax in Vim9 script. Solution: Add the :legacy command.
2021-04-23patch 8.2.2801: free Pascal makefile not recognizedv8.2.2801Bram Moolenaar
Problem: Free Pascal makefile not recognized. Solution: Add the fpcmake filetype. (Doug Kearns)
2021-04-21Update runtime filesBram Moolenaar
2021-04-20patch 8.2.2790: filetype test failsv8.2.2790Bram Moolenaar
Problem: filetype test fails Solution: Also update the scripts detection
2021-04-20patch 8.2.2788: Raku is now the only name what once was called perl6v8.2.2788Bram Moolenaar
Problem: Raku is now the only name what once was called perl6. Solution: Adjust the filetype detection. (closes #8120)
2021-04-17patch 8.2.2778: problem restoring 'packpath' in sessionv8.2.2778Bram Moolenaar
Problem: Problem restoring 'packpath' in session. Solution: Let "skiprtp" also apply to 'packpath'.
2021-04-17Update runtime files.Bram Moolenaar
2021-04-17patch 8.2.2773: PSL filetype not recognizedv8.2.2773Bram Moolenaar
Problem: PSL filetype not recognized. Solution: Add a filetype pattern. (Daniel Kho, closes #8117)
2021-04-16patch 8.2.2772: problems when restoring 'runtimepath' from a session filev8.2.2772Bram Moolenaar
Problem: Problems when restoring 'runtimepath' from a session file. Solution: Add the "skiprtp" item in 'sessionoptions'.
2021-04-15patch 8.2.2769: Modula-3 config files are not recognizedv8.2.2769Bram Moolenaar
Problem: Modula-3 config files are not recognized. Solution: Add filetype patterns. (Doug Kearns)
2021-04-10patch 8.2.2753: Vim9: cannot ignore an item in assignment unpackv8.2.2753Bram Moolenaar
Problem: Vim9: cannot ignore an item in assignment unpack. Solution: Allow using an underscore.
2021-04-10patch 8.2.2744: Vim9: no way to explicitly ignore an argumentv8.2.2744Bram Moolenaar
Problem: Vim9: no way to explicitly ignore an argument. Solution: Use the underscore as the name for an ignored argument.
2021-04-07Update runtime filesBram Moolenaar
2021-04-07patch 8.2.2733: detecting Lua version is not reliablev8.2.2733Bram Moolenaar
Problem: Detecting Lua version is not reliable. Solution: Add "vim.lua_version". (Ozaki Kiichi, closes #8080)
2021-04-05patch 8.2.2714: filetype pattern ending in star is too far upv8.2.2714Bram Moolenaar
Problem: Filetype pattern ending in star is too far up. Solution: Move down to where patterns ending in star belong. (closes #8065)
2021-04-03patch 8.2.2697: function list test failsv8.2.2697Bram Moolenaar
Problem: Function list test fails. Solution: Add missing function. (Yegappan Lakshmanan)
2021-04-02patch 8.2.2694: when 'matchpairs' is empty every character beepsv8.2.2694Bram Moolenaar
Problem: When 'matchpairs' is empty every character beeps. (Marco Hinz) Solution: Bail out when no character in 'matchpairs' was found. (closes #8053) Add assert_nobeep().
2021-04-02patch 8.2.2690: PowerShell files are not recognizedv8.2.2690Bram Moolenaar
Problem: PowerShell files are not recognized. Solution: Recognize several PowerShell extension. (Heath Stewart, closes #8051)
2021-03-31Update runtime files.Bram Moolenaar
2021-03-29patch 8.2.2677: Vim9: cannot use only some of the default argumentsv8.2.2677Bram Moolenaar
Problem: Vim9: cannot use only some of the default arguments. Solution: Use v:none to use default argument value. Remove uf_def_arg_idx[], use JUMP_IF_ARG_SET. (closes #6504)
2021-03-29patch 8.2.2675: directory change in a terminal window shell is not followedv8.2.2675Bram Moolenaar
Problem: Directory change in a terminal window shell is not followed. Solution: Add the 'autoshelldir' option. (closes #6290)
2021-03-27patch 8.2.2667: prop_find() cannot find item matching both id and typev8.2.2667Bram Moolenaar
Problem: prop_find() cannot find item matching both id and type. Solution: Add the "both" argument. (Naohiro Ono, closes #8019)
2021-03-26patch 8.2.2658: :for cannot loop over a stringv8.2.2658Bram Moolenaar
Problem: :for cannot loop over a string. Solution: Accept a string argument and iterate over its characters.
2021-03-22patch 8.2.2638: cannot write a message to the terminal from the GUIv8.2.2638Bram Moolenaar
Problem: Cannot write a message to the terminal from the GUI. Solution: Add :echoconsole and use it in the test runner. (issue #7975)
2021-03-21patch 8.2.2634: 'tagfunc' does not indicate using a patternv8.2.2634Bram Moolenaar
Problem: 'tagfunc' does not indicate using a pattern. Solution: Add the "r" flag. (Andy Massimino, closes #7982)
2021-03-19patch 8.2.2625: rss files not recognizedv8.2.2625Bram Moolenaar
Problem: Rss files not recognized. Solution: Recognize .rss as XML. (Kivin Locke, closes #7987)
2021-03-19patch 8.2.2624: atom files not recognizedv8.2.2624Bram Moolenaar
Problem: Atom files not recognized. Solution: Recognize .atom as XML. (Kivin Locke, closes #7986)
2021-03-17patch 8.2.2616: Vim9: if 'cpo' is change in Vim9 script it may be restoredv8.2.2616Bram Moolenaar
Problem: Vim9: if 'cpo' is change in Vim9 script it may be restored. Solution: Apply the changes to 'cpo' to the restored value.
2021-03-17patch 8.2.2612: col('.') may get outdated column valuev8.2.2612Bram Moolenaar
Problem: col('.') may get outdated column value. Solution: Add a note to the help how to make this work and add a test for it. (closes #7971)
2021-03-14patch 8.2.2607: strcharpart() cannot include composing charactersv8.2.2607Bram Moolenaar
Problem: strcharpart() cannot include composing characters. Solution: Add the {skipcc} argument.
2021-03-14patch 8.2.2606: strchars() defaults to counting composing charactersv8.2.2606Bram Moolenaar
Problem: strchars() defaults to counting composing characters. Solution: Add strcharlen() which ignores composing characters.
2021-03-14patch 8.2.2605: Vim9: string index and slice does not include composing charsv8.2.2605Bram Moolenaar
Problem: Vim9: string index and slice does not include composing chars. Solution: Include composing characters. (issue #6563)
2021-03-13Update runtime files.Bram Moolenaar
2021-03-12patch 8.2.2591: Poke files are not recognizedv8.2.2591Bram Moolenaar
Problem: Poke files are not recognized. Solution: Add a filetype entry. (Matt Ihlenfield)
2021-03-04patch 8.2.2569: 'fillchars' "stl" and "stlnc" items must be single bytev8.2.2569Bram Moolenaar
Problem: 'fillchars' "stl" and "stlnc" items must be single byte. Solution: Accept multi-byte characters. (Christian Wellenbrock, Yegappan Lakshmanan, closes #7927)
2021-02-27Update runtime files.Bram Moolenaar
2021-02-19patch 8.2.2531: Vim9: the :k command is obscurev8.2.2531Bram Moolenaar
Problem: Vim9: the :k command is obscure. Solution: Disallow using :k, can use :mark instead. (closes #7874)
2021-02-17patch 8.2.2529: Vim9: Not possible to use legacy and Vim9 script in one filev8.2.2529Bram Moolenaar
Problem: Vim9: Not possible to use legacy and Vim9 script in one file. Solution: Vim9: allow for "if false" before :vim9script. (closes #7851)