summaryrefslogtreecommitdiffstats
path: root/runtime
AgeCommit message (Collapse)Author
2021-07-15patch 8.2.3162: Vim9: argument types are not checked at compile timev8.2.3162Yegappan Lakshmanan
Problem: Vim9: argument types are not checked at compile time. Solution: Add more type checks. (Yegappan Lakshmanan, closes #8560)
2021-07-14patch 8.2.3160: 'breakindent' does not work well for bulleted listsv8.2.3160Christian Brabandt
Problem: 'breakindent' does not work well for bulleted and numbered lists. Solution: Add the "list" entry to 'breakindentopt'. (Christian Brabandt, closes #8564, closes #1661)
2021-07-07Update runtime filesBram Moolenaar
2021-07-05patch 8.2.3110: a pattern that matches the cursor position is complicatedv8.2.3110Bram Moolenaar
Problem: A pattern that matches the cursor position is bit complicated. Solution: Use a dot to indicate the cursor line and column. (Christian Brabandt, closes #8497, closes #8179)
2021-07-03patch 8.2.3092: Vim9: builtin function test fails without +channel featurev8.2.3092Dominique Pelle
Problem: Vim9: builtin function test fails without the +channel feature. Solution: Check the +channel feature is supported. (Dominique Pellé, closes #8507)
2021-07-03patch 8.2.3087: Gemtext files are not recognizedv8.2.3087Bram Moolenaar
Problem: Gemtext files are not recognized. Solution: Recognize .gmi and .gemini files. (closes #8427)
2021-07-03patch 8.2.3085: JSONC files are not recognizedv8.2.3085Izhak Jakov
Problem: JSONC files are not recognized. Solution: Recognize .jsonc files. (Izhak Jakov, closes #8500)
2021-06-30patch 8.2.3079: Powershell core not supported by defaultv8.2.3079Mike Williams
Problem: Powershell core not supported by default. Solution: Set option defaults for "pwsh". (Mike Williams, closes #8481)
2021-06-28patch 8.2.3071: shell options are not set properly for PowerShellv8.2.3071Mike Williams
Problem: Shell options are not set properly for PowerShell. Solution: Use better option defaults. (Mike Willams, closes #8459)
2021-06-27patch 8.2.3068: Unicode tables are slightly outdatedv8.2.3068Christian Brabandt
Problem: Unicode tables are slightly outdated. Solution: Update the tables for Unicode release 13. (Christian Brabandt closes #8430)
2021-06-27Update runtime filesBram Moolenaar
2021-06-26patch 8.2.3050: cannot recognize elixir filesv8.2.3050Austin Gatlin
Problem: Cannot recognize elixir files. Solution: Recognize Elixir-specific files. Check if an .ex file is Euphoria or Elixir. (Austin Gatlin, closes #8401, closes #8446)
2021-06-25patch 8.2.3049: JSON patch file not recognizedv8.2.3049Kevin Locke
Problem: JSON patch file not recognized. Solution: Recognize json-patch as json. (Kevin Locke, closes #8450)
2021-06-23patch 8.2.3040: GUI: dropping files not testedv8.2.3040Yegappan Lakshmanan
Problem: GUI: dropping files not tested. Solution: Add test_gui_drop_files() and tests. (Yegappan Lakshmanan, closes #8434)
2021-06-21patch 8.2.3028: GUI mouse events not testedv8.2.3028Yegappan Lakshmanan
Problem: GUI mouse events not tested. Solution: Add test_gui_mouse_event(). Add mouse tests. Also add a few viminfo tests. (Yegappan Lakshmanan, closes #8407)
2021-06-20patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt
Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
2021-06-19patch 8.2.3019: location list only has the start position.v8.2.3019thinca
Problem: Location list only has the start position. Solution: Make it possible to add an end position. (Shane-XB-Qian, closes #8393)
2021-06-13Update runtime filesBram Moolenaar
2021-06-13patch 8.2.2990: Jupyter Notebook files are not recognizedv8.2.2990kompowiec2
Problem: Jupyter Notebook files are not recognized. Solution: Recognize *.ipynb. (closes #8375)
2021-06-12patch 8.2.2982: Vim9: future commands are not reserved yetv8.2.2982Bram Moolenaar
Problem: Vim9: future commands are not reserved yet. Solution: Add commands to be implemented later. Make "this" a reserved name.
2021-06-10patch 8.2.2971: cannot yank a block without trailing spacesv8.2.2971Christian Brabandt
Problem: Cannot yank a block without trailing spaces. Solution: Add the "zy" command. (Christian Brabandt, closes #8292)
2021-06-07patch 8.2.2958: function list test failsv8.2.2958Bram Moolenaar
Problem: Function list test fails. Solution: Add newly added function to the list. Fix typo.
2021-06-07patch 8.2.2957: using getchar() in Vim9 script is problematicv8.2.2957Bram Moolenaar
Problem: Using getchar() in Vim9 script is problematic. Solution: Add getcharstr(). (closes #8343)
2021-06-06patch 8.2.2954: short file name extension for Scala not recognizedv8.2.2954Brennon M
Problem: Short file name extension for Scala not recognized. Solution: Recognize *.sc. (closes #8337)
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)