summaryrefslogtreecommitdiffstats
path: root/runtime/doc/change.txt
AgeCommit message (Collapse)Author
2023-12-08runtime(doc): fix typo in change.txtChristian Brabandt
Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-05runtime(doc): remove non-existent parameter in shift-command (#13626)Roy Orbitson
The variant with the {count} parameter is explained in the next item. Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-11-16patch 9.0.2108: [security]: overflow with count for :s commandv9.0.2108Christian Brabandt
Problem: [security]: overflow with count for :s command Solution: Abort the :s command if the count is too large If the count after the :s command is larger than what fits into a (signed) long variable, abort with e_value_too_large. Adds a test with INT_MAX as count and verify it correctly fails. It seems the return value on Windows using mingw compiler wraps around, so the initial test using :s/./b/9999999999999999999999999990 doesn't fail there, since the count is wrapping around several times and finally is no longer larger than 2147483647. So let's just use 2147483647 in the test, which hopefully will always cause a failure Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-09-19patch 9.0.1915: r_CTRL-C works differently in visual modev9.0.1915Christian Brabandt
Problem: r_CTRL-C works differently in visual mode Solution: Make r_CTRL-C behave consistent in visual mode in terminal and Windows GUI in visual mode, r CTRL-C behaves strange in Unix like environments. It seems to end visual mode, but still is waiting for few more chars, however it never seems to replace it by any characters and eventually just returns back into normal mode. In contrast in Windows GUI mode, r_CTRL-C replaces in the selected area all characters by a literal CTRL-C. Not sure why it behaves like this. It seems in the Windows GUI, got_int is not set and therefore behaves as if any other normal character has been pressed. So remove the special casing of what happens when got_int is set and make it always behave like in Windows GUI mode. Add a test to verify it always behaves like replacing in the selected area each selected character by a literal CTRL-C. closes: #13091 closes: #13112 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-04-22Update runtime filesBram Moolenaar
2023-02-27Update runtime filesBram Moolenaar
2023-02-20Update runtime files.Bram Moolenaar
2022-11-23Update runtime filesBram Moolenaar
2022-09-18Update runtime filesBram Moolenaar
2022-07-29Update runtime filesBram Moolenaar
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-03Update runtime filesBram Moolenaar
2022-05-07Update runtime filesBram Moolenaar
2022-05-07patch 8.2.4907: some users do not want a line comment always insertedv8.2.4907Bram Moolenaar
Problem: Some users do not want a line comment always inserted. Solution: Add the '/' flag to 'formatoptions' to not repeat the comment leader after a statement when using "o".
2022-05-06patch 8.2.4881: "P" in Visual mode still changes some registersv8.2.4881Shougo Matsushita
Problem: "P" in Visual mode still changes some registers. Solution: Make "P" in Visual mode not change any register. (Shougo Matsushita, closes #10349)
2022-04-18Update runtime filesBram Moolenaar
2022-03-08Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2022-02-04Update runtime files.Bram Moolenaar
2022-01-29Update runtime filesBram Moolenaar
2021-12-30Update runtime filesBram Moolenaar
2021-12-27Update runtime filesBram Moolenaar
2021-10-16Update runtime filesBram Moolenaar
2021-06-27Update runtime filesBram Moolenaar
2021-06-13Update runtime filesBram Moolenaar
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-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-03-13Update runtime files.Bram Moolenaar
2021-01-25Update runtime files.Bram Moolenaar
2020-11-21Update runtime filesBram Moolenaar
2020-11-05Update runtime filesBram Moolenaar
2020-11-01patch 8.2.1933: cannot sort using locale orderingv8.2.1933Bram Moolenaar
Problem: Cannot sort using locale ordering. Solution: Add a flag for :sort and sort() to use the locale. (Dominique Pellé, closes #7237)
2020-08-30Update runtime files.Bram Moolenaar
2020-07-26Update runtime files.Bram Moolenaar
2020-06-07Update runtime filesBram Moolenaar
2020-06-04patch 8.2.0901: formatting CJK text isn't optimalv8.2.0901Bram Moolenaar
Problem: Formatting CJK text isn't optimal. Solution: Properly break CJK lines. (closes #3875)
2020-05-01Update runtime filesBram Moolenaar
2020-04-20Update runtime filesBram Moolenaar
2020-04-10Update runtime filesBram Moolenaar
2020-02-15Update runtime files.Bram Moolenaar
2019-12-17patch 8.2.0017: OS/2 and MS-DOS are still mentionedv8.2.0017Bram Moolenaar
Problem: OS/2 and MS-DOS are still mentioned, even though support was removed long ago. Solution: Update documentation. (Yegappan Lakshmanan, closes #5368)
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-10-24patch 8.1.2212: cannot see the selection type in :reg outputv8.1.2212Bram Moolenaar
Problem: Cannot see the selection type in :reg output. (Ayberk Aydın) Solution: Add c/l/b. (Christian Brabandt, closes #5110, closes #4546)
2019-10-16Update runtime files.Bram Moolenaar
2019-09-28patch 8.1.2096: too many #ifdefsv8.1.2096Bram Moolenaar
Problem: Too many #ifdefs. Solution: Graduate FEAT_COMMENTS.
2019-09-27Update runtime files.Bram Moolenaar
2019-08-31Runtime files update.Bram Moolenaar
2019-08-21patch 8.1.1901: the +insert_expand feature is not always availablev8.1.1901Bram Moolenaar
Problem: The +insert_expand feature is not always available. Solution: Graduate the +insert_expand feature.
2019-07-13Update runtime filesBram Moolenaar
2019-05-09Update runtime filesBram Moolenaar