summaryrefslogtreecommitdiff
path: root/src/undo.c
AgeCommit message (Collapse)Author
2013-04-15updated for version 7.3.901Bram Moolenaar
Problem: Outdated comment, ugly condition. Solution: Update a few comments, break line.
2012-08-23updated for version 7.3.634Bram Moolenaar
Problem: Month/Day format for undo is confusing. (Marcin Szamotulski) Solution: Always use Year/Month/Day, should work for everybody.
2012-06-01updated for version 7.3.533Bram Moolenaar
Problem: Memory leak when writing undo file. Solution: Free the ACL. (Dominique Pelle)
2011-12-08updated for version 7.3.367Bram Moolenaar
Problem: :wundo and :rundo use a wrong checksum. Solution: Include the last line when computing the hash. (Christian Brabandt)
2011-01-22updated for version 7.3.107Bram Moolenaar
Problem: Year number for :undolist can be confused with month or day. Solution: Change "%y" to "%Y".
2011-01-22updated for version 7.3.103Bram Moolenaar
Problem: Changing 'fileformat' and then using ":w" in an empty file sets the 'modified' option. Solution: In unchanged() don't ignore 'ff' for an empty file.
2010-12-17updated for version 7.3.085Bram Moolenaar
Problem: Inconsistency with preproc symbols. void * computation. Solution: Include vimio.h from vim.h. Add type cast.
2010-12-17updated for version 7.3.083Bram Moolenaar
Problem: When a read() or write() is interrupted by a signal it fails. Solution: Add read_eintr() and write_eintr().
2010-11-03updated for version 7.3.048Bram Moolenaar
Problem: ":earlier 1f" doesn't work after loading undo file. Solution: Set b_u_save_nr_cur when loading an undo file. (Christian Brabandt) Fix only showing time in ":undolist"
2010-08-07Fix: ml_get errors when using undo with 'virtualedit'.Bram Moolenaar
2010-08-04When undoing a reload, move the cursor to the first changed line.Bram Moolenaar
2010-07-25Fix: editing a not encrypted file after a crypted file messed up reading theBram Moolenaar
text from an undo file.
2010-07-24Add the 'undoreload' option to be able to undo a file reload.Bram Moolenaar
2010-07-23Add the 'concealcursor' option to decide when the cursor line is to beBram Moolenaar
concealed or not. Rename 'conc' to 'cole' as the short name for 'conceallevel'.
2010-07-21Fix build problem when fchown() not available. (Gary Johnson)Bram Moolenaar
2010-07-19Rename w_p_conceal to w_p_conc for consistency.Bram Moolenaar
2010-07-18Fixes and improvements for MS-Windows build.Bram Moolenaar
2010-07-14Support completion for ":find". (Nazri Ramliy)Bram Moolenaar
Cleanup white space.
2010-07-08Make synstack() work on the character just after the end of the line.Bram Moolenaar
2010-07-07Apply patch 7.2.445.Bram Moolenaar
2010-07-02Make updating text for conceal mode simpler. A few compiler warning fixes.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-22Fix compiler warnings for shadowed variables. Make 'conceal' a long insteadBram Moolenaar
of int.
2010-06-21Crypt the swapfile.Bram Moolenaar
2010-06-14Fix tiny build, move functions to undo.c.Bram Moolenaar
2010-06-12Minor typo and docs update.Bram Moolenaar
2010-06-06Fix a few compiler warnings. Fix crash with encrypted undo file.Bram Moolenaar
2010-06-02Optimize the blowfish crypt/decrypt code a bit more.Bram Moolenaar
2010-06-01Don't use pointers to store numbers, use a union.Bram Moolenaar
Fixed MSVC makefile use of /Wp64 flag.
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-30Do not write an undo file if there is nothing to undo.Bram Moolenaar
2010-05-30updated for version 7.2.441Bram Moolenaar
Problem: When using ":earlier" undo information may be wrong. Solution: When changing alternate branches also adjust b_u_oldhead.
2010-05-30A bit of cleanup and simplification for undofile.Bram Moolenaar
2010-05-30A few more fixes for undo file. Split test in two parts so that it doesn'tBram Moolenaar
fail with tiny features.
2010-05-29Various improvements to undo file code to make it more robust.Bram Moolenaar
2010-05-29Remove old and unused method to allocate memory for undo.Bram Moolenaar
2010-05-29Fix a few more things for persistent undo.Bram Moolenaar
2010-05-26More strict checks for the undo file.Bram Moolenaar
2010-05-25Fix for using ":wundo foo" when foo is an empty file.Bram Moolenaar
2010-05-24And another small fix for persistent undo.Bram Moolenaar
2010-05-24Fix: :wundo didn't work in a buffer without a name.Bram Moolenaar
2010-05-24Improve the MS-Windows installer.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-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-15First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar
2008-02-13updated for version 7.1-249Bram Moolenaar