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