summaryrefslogtreecommitdiffstats
path: root/runtime/doc/undo.txt
AgeCommit message (Collapse)Author
2023-08-10Updated runtime filesv9.0.1683Christian Brabandt
This is a collection of various PRs from github that all require a minor patch number: 1) https://github.com/vim/vim/pull/12612 Do not conflate dictionary key with end of block 2) https://github.com/vim/vim/pull/12729: When saving and restoring 'undolevels', the constructs `&undolevels` and `:set undolevels` are problematic. The construct `&undolevels` reads an unpredictable value; it will be the local option value (if one has been set), or the global option value (otherwise), making it unsuitable for saving a value for later restoration. Similarly, if a local option value has been set for 'undolevels', temporarily modifying the option via `:set undolevels` changes the local value as well as the global value, requiring extra work to restore both values. Saving and restoring the option value in one step via the construct `:let &undolevels = &undolevels` appears to make no changes to the 'undolevels' option, but if a local option has been set to a different value than the global option, it has the unintended effect of changing the global 'undolevels' value to the local value. Update the documentation to explain these issues and recommend explicit use of global and local option values when saving and restoring. Update some unit tests to use `g:undolevels`. 3) https://github.com/vim/vim/pull/12702: Problem: Pip requirements files are not recognized. Solution: Add a pattern to match pip requirements files. 4) https://github.com/vim/vim/pull/12688: Add indent file and tests for ABB Rapid 5) https://github.com/vim/vim/pull/12668: Use Lua 5.1 numeric escapes in tests and add to CI Only Lua 5.2+ and LuaJIT understand hexadecimal escapes in strings. Lua 5.1 only supports decimal escapes: > A character in a string can also be specified by its numerical value > using the escape sequence \ddd, where ddd is a sequence of up to three > decimal digits. (Note that if a numerical escape is to be followed by a > digit, it must be expressed using exactly three digits.) Strings in Lua > can contain any 8-bit value, including embedded zeros, which can be > specified as '\0'. To make sure this works with Lua 5.4 and Lua 5.1 change the Vim CI to run with Lua 5.1 as well as Lua 5.4 6) https://github.com/vim/vim/pull/12631: Add hurl filetype detection 7) https://github.com/vim/vim/pull/12573: Problem: Files for haskell persistent library are not recognized Solution: Add pattern persistentmodels for haskell persistent library closes: #12612 closes: #12729 closes: #12702 closes: #12688 closes: #12668 closes: #12631 closes: #12573 Co-authored-by: lacygoill <lacygoill@lacygoill.me> Co-authored-by: Michael Henry <drmikehenry@drmikehenry.com> Co-authored-by: ObserverOfTime <chronobserver@disroot.org> Co-authored-by: KnoP-01 <knosowski@graeffrobotics.de> Co-authored-by: James McCoy <jamessan@jamessan.com> Co-authored-by: Jacob Pfeifer <jacob@pfeifer.dev> Co-authored-by: Borys Lykah <lykahb@fastmail.com>
2022-07-25Update 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-17Update runtime filesBram Moolenaar
2022-06-03Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2020-12-10Update runtime files.Bram Moolenaar
2020-10-26Update runtime files.Bram Moolenaar
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-07Runtime file updates.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-01-17Update runtime files.Bram Moolenaar
2018-08-11Update runtime files.Bram Moolenaar
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2016-09-12Vim 8.0 releasev8.0.0000Bram Moolenaar
2014-06-12Update runtime files.Bram Moolenaar
2013-09-22Update runtime files. Add support for J.Bram Moolenaar
2013-09-05Updated runtime files.Bram Moolenaar
2013-08-10release version 7.4v7.4Bram Moolenaar
2013-07-28Update files for the 7.4b BETA release.v7.4b.000Bram Moolenaar
2013-07-06Vim 7.4a BETA release.v7.4aBram Moolenaar
2012-03-11Updated runtime files. Add Dutch translations.Bram Moolenaar
2012-02-04updated for version 7.3.423v7.3.423Bram Moolenaar
Problem: Small mistakes in comments, proto and indent. Solution: Fix the mistakes. Also update runtime files
2011-09-14Updated runtime files.Bram Moolenaar
2011-01-08Updated runtime files.Bram Moolenaar
2010-10-27Updated runtile files.Bram Moolenaar
2010-09-30Runtime file updates.Bram Moolenaar
2010-09-19Updated runtime files.Bram Moolenaar
2010-08-15Last changes for the 7.3 release!v7.3Bram Moolenaar
2010-08-14Version 7.3f -> 7.3gBram Moolenaar
2010-08-09Version 7.3e -> 7.3f.Bram Moolenaar
2010-08-047.3d -> 7.3e.Bram Moolenaar
2010-08-01Version 7.3c -> 7.3dBram Moolenaar
2010-07-257.3b -> 7.3cBram Moolenaar
2010-07-20Update timestamps for recently changed help files.Bram Moolenaar
2010-07-18Vim 7.3a -> 7.3b.Bram Moolenaar
2010-06-27Added ":earlier 1f" and ":later 1f".Bram Moolenaar
2010-06-27Add file save counter to undo information. Add undotree() function.Bram Moolenaar
2010-06-06Fix a few compiler warnings. Fix crash with encrypted undo file.Bram Moolenaar
2010-06-05Use full path in undofile(). Updated docs.Bram Moolenaar
2010-05-30Crypt the text in the undo file if the file itself is crypted.Bram Moolenaar
2010-05-30Made reading/writing undo info a bit more robust.Bram Moolenaar
2010-05-30Added the undofile() function. Updated runtime files.Bram Moolenaar
2010-05-29Various improvements to undo file code to make it more robust.Bram Moolenaar
2010-05-26More strict checks for the undo file.Bram Moolenaar
2010-05-24Fix uninit memory read in undo code. Fix uint32_t in proto file.Bram Moolenaar
A few minor changes.
2010-05-23Included patch for persistent undo. Lots of changes and added test.Bram Moolenaar
2010-05-15First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar
2010-01-06Update documentation files.Bram Moolenaar