summaryrefslogtreecommitdiffstats
path: root/runtime/doc/message.txt
AgeCommit message (Collapse)Author
2024-03-13patch 9.1.0178: E1513 might be confusingv9.1.0178Christian Brabandt
Problem: E1513 might be confusing (Christoph Thoma) Solution: reword error message, fix test to not depend on the actual message fixes: #14189 Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-05patch 9.1.0150: Several minor 'winfixbuf' issuesv9.1.0150Sean Dewar
Problem: several minor 'winfixbuf' issues exist, mostly relating to the quickfix list Solution: address them and adjust tests. Retab and reflow a few things too. (Sean Dewar) Things touched include: - Replace the semsgs with gettext'd emsgs. - Handle window switching in ex_listdo properly, so curbuf and curwin are kept in-sync and trigger autocommands; handle those properly. - Don't change the list entry index in qf_jump_edit_buffer if we fail due to 'wfb' (achieved by returning FAIL; QF_ABORT should only be used if the list was changed). - Make qf_jump_edit_buffer actually switch to prevwin when using `:cXX` commands **outside** of the list window if 'wfb' is set in curwin. Handle autocommands properly in case they mess with the list. NOTE: previously, it seemed to split if 'wfb' was set, but do nothing and fail if prevwin is *valid*. This behaviour seemed strange, and maybe unintentional? Now it aligns more with what's described for the `:cXX` commands in the original PR description when used outside a list window, I think. - In both functions, only consider prevwin if 'wfb' isn't set for it; fallback to splitting otherwise. - Use win_split to split. Not sure if there was a specific reason for using ex_splitview. win_split is simpler and respects modifiers like :vertical that may have been used. Plus, its return value can be checked for setting opened_window in qf code (technically win_split_ins autocmds could immediately close it or change windows, in which the qf code might close some other window on failure; it's already the case elsewhere, though). closes: #14142 Signed-off-by: Sean Dewar <6256228+seandewar@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-03runtime(doc): Highlight the error message at *E1513*Christian Brabandt
Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-03-03patch 9.1.0147: Cannot keep a buffer focused in a windowv9.1.0147Colin Kennedy
Problem: Cannot keep a buffer focused in a window (Amit Levy) Solution: Add the 'winfixbuf' window-local option (Colin Kennedy) fixes: #6445 closes: #13903 Signed-off-by: Colin Kennedy <colinvfx@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-02patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0Christian Brabandt
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-12-21patch 9.0.2183: Maximum callback depth is not configurablev9.0.2183zeertzjq
Problem: Maximum callback depth is not configurable. Solution: Revert patch 9.0.2103. Set 'maxfuncdepth' in test. (zeertzjq) fixes: #13732 closes: #13736 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-11-12patch 9.0.2103: recursive callback may cause issues on some archsv9.0.2103Christian Brabandt
Problem: recursive callback may cause issues on some archs Solution: Decrease the limit drastically to 20 Recursive callback limit causes problems on some architectures Since commit 47510f3d6598a1218958c03ed11337a43b73f48d we have a test that causes a recursive popup callback function to be executed. However it seems the current limit of 'maxfuncdepth' option value is still too recursive for some 32bit architectures (e.g. 32bit ARM). So instead of allowing a default limit of 100 (default value for 'maxfuncdepth'), let's reduce this limit to 20. I don't think there is a use case where one would need such a high recursive callback limit and a limit of 20 seems reasonable (although it is currently hard-coded). closes: #13495 closes: #13502 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-06-10Update runtime filesBram Moolenaar
2023-05-31patch 9.0.1594: some internal error messages are translatedv9.0.1594RestorerZ
Problem: Some internal error messages are translated. Solution: Consistently do not translate internal error messages. (closes #12459)
2023-05-24patch 9.0.1576: users may not know what to do with an internal errorv9.0.1576Bram Moolenaar
Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions.
2022-10-28Update 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-26Update runtime filesBram Moolenaar
2022-01-29Update runtime filesBram Moolenaar
2022-01-23Update runtime filesBram Moolenaar
2022-01-08Update runtime filesBram Moolenaar
2021-12-16Update runtime filesBram Moolenaar
2021-12-13patch 8.2.3797: no good reason to limit the message history in tiny versionv8.2.3797Bram Moolenaar
Problem: No good reason to limit the message history in the tiny version. Solution: Always use 200.
2021-10-24patch 8.2.3562: cannot add color namesv8.2.3562Drew Vogel
Problem: Cannot add color names. Solution: Add the v:colornames dictionary. (Drew Vogel, closes #8761)
2021-08-14Update runtime filesBram Moolenaar
2021-01-02Update runtime files.Bram Moolenaar
2020-09-07Update runtime files.Bram Moolenaar
2020-08-30Update runtime files.Bram Moolenaar
2020-01-02Update a few runtime files.Bram Moolenaar
2020-01-01patch 8.2.0074: Python 3 unicode test someitmes failsv8.2.0074Bram Moolenaar
Problem: Python 3 unicode test someitmes fails. Solution: Make 'termencoding' empty. Correct number of error message.
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-10-26Update runtime filesBram Moolenaar
2019-10-19patch 8.1.2180: Error E303 is not useful when 'directory' is emptyv8.1.2180Bram Moolenaar
Problem: Error E303 is not useful when 'directory' is empty. Solution: Skip the error message. (Daniel Hahler, #5067)
2019-10-16Update runtime files.Bram Moolenaar
2019-08-31Runtime files update.Bram Moolenaar
2019-05-26Update runtime files.Bram Moolenaar
2019-05-09Update runtime filesBram Moolenaar
2019-05-05patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar
Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
2019-04-08Update runtime files.Bram Moolenaar
2019-01-01Update runtime filesBram Moolenaar
2018-07-29Update runtime files.Bram Moolenaar
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-02-09Update runtime files.Bram Moolenaar
2017-11-05Update runtime files.Bram Moolenaar
2017-11-02Long overdue runtime update.Bram Moolenaar
2017-10-14patch 8.0.1189: E172 is not actually usefulv8.0.1189Bram Moolenaar
Problem: E172 is not actually useful, it's only on Unix anyway. Solution: Remove the check and the error.
2017-03-29Update runtime files.Bram Moolenaar
2017-01-02Updated runtime files.Bram Moolenaar
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2016-09-06Updated runtime files.Bram Moolenaar
2016-07-17Update runtime files.Bram Moolenaar
2016-07-15Updated runtime files.Bram Moolenaar
2016-04-14patch 7.4.1735v7.4.1735Bram Moolenaar
Problem: It is not possible to only see part of the message history. It is not possible to clear messages. Solution: Add a count to ":messages" and a clear argument. (Yasuhiro Matsumoto)
2016-02-27Updated runtime filesBram Moolenaar
2013-08-10release version 7.4v7.4Bram Moolenaar