summaryrefslogtreecommitdiff
path: root/src/mark.c
AgeCommit message (Collapse)Author
2017-01-28patch 8.0.0255: setpos() does not use the buffer argument for all marksBram Moolenaar
Problem: When calling setpos() with a buffer argument it often is ignored. (Matthew Malcomson) Solution: Make the buffer argument work for all marks local to a buffer. (neovim #5713) Add more tests.
2016-10-15patch 8.0.0039Bram Moolenaar
Problem: When Vim 8 reads an old viminfo and exits, the next time marks are not read from viminfo. (Ned Batchelder) Solution: Set a mark when it wasn't set before, even when the timestamp is zero. (closes #1170)
2016-08-29patch 7.4.2293Bram Moolenaar
Problem: Modelines in source code are inconsistant. Solution: Use the same line in most files. Add 'noet'. (Naruhiko Nishino)
2016-07-24patch 7.4.2101Bram Moolenaar
Problem: Looping over windows, buffers and tab pages is inconsistant. Solution: Use FOR_ALL_ macros everywhere. (Yegappan Lakshmanan)
2016-07-03patch 7.4.1988Bram Moolenaar
Problem: When updating viminfo with file marks there is no time order. Solution: Remember the time when a buffer was last used, store marks for the most recently used buffers.
2016-07-02patch 7.4.1982Bram Moolenaar
Problem: Viminfo file contains duplicate change marks. Solution: Drop duplicate marks.
2016-06-17patch 7.4.1943Bram Moolenaar
Problem: Coverity warns for unreachable code. Solution: Remove the code that won't do anything.
2016-06-15patch 7.4.1939Bram Moolenaar
Problem: Memory access error when reading viminfo. (Dominique Pelle) Solution: Correct index in jumplist when at the end.
2016-06-14patch 7.4.1938Bram Moolenaar
Problem: When writing viminfo numbered marks were duplicated. Solution: Check for duplicates between current numbered marks and the ones read from viminfo.
2016-06-13patch 7.4.1932Bram Moolenaar
Problem: When writing viminfo the jumplist is not merged with the one in the viminfo file. Solution: Merge based on timestamp.
2016-06-12patch 7.4.1925Bram Moolenaar
Problem: Viminfo does not merge file marks properly. Solution: Use a timestamp. Add the :clearjumps command.
2016-01-30patch 7.4.1210Bram Moolenaar
Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
2016-01-29patch 7.4.1198Bram Moolenaar
Problem: Still using __ARGS. Solution: Remove __ARGS in several files. (script by Hirohito Higashi) Also remove use of HAVE_STDARG_H.
2014-03-23updated for version 7.4.212Bram Moolenaar
Problem: Now that the +visual feature is always enabled the #ifdefs for it are not useful. Solution: Remove the checks for FEAT_VISUAL.
2013-11-03updated for version 7.4.059Bram Moolenaar
Problem: set_last_cursor() may encounter w_buffer being NULL. (Matt Mkaniaris) Solution: Check for NULL.
2013-08-02updated for version 7.4b.009Bram Moolenaar
Problem: When setting the Visual area manually and 'selection' is exclusive, a yank includes one character too much. (Ingo Karkat) Solution: Default the Visual operation to "v". (Christian Brabandt)
2013-02-06updated for version 7.3.800Bram Moolenaar
Problem: The " mark is not adjusted when inserting lines. (Roland Eggner) Solution: Adjust the line number. (Christian Brabandt)
2013-01-23updated for version 7.3.776Bram Moolenaar
Problem: ml_get error when searching, caused by curwin not matching curbuf. Solution: Avoid changing curbuf. (Lech Lorens)
2012-07-06updated for version 7.3.590Bram Moolenaar
Problem: The '< and '> marks cannot be set directly. Solution: Allow setting '< and '>. (Christian Brabandt)
2011-02-25updated for version 7.3.128Bram Moolenaar
Problem: Another compiler warning for signed pointer. Solution: Use unsigned int argument for sscanf().
2010-08-13Avoid warnings from the clang compiler. (Dominique Pelle)Bram Moolenaar
2009-05-16updated for version 7.2-177Bram Moolenaar
2009-04-29updated for version 7.2-161Bram Moolenaar
2008-11-09updated for version 7.2-031Bram Moolenaar
2008-08-09updated for version 7.2-000Bram Moolenaar
2008-03-16updated for version 7.1-283Bram Moolenaar
2008-02-13updated for version 7.1-248Bram Moolenaar
2008-01-03updated for version 7.1-195Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2006-03-03updated for version 7.0213Bram Moolenaar
2006-02-26updated for version 7.0208Bram Moolenaar
2006-02-16updated for version 7.0199Bram Moolenaar
2006-01-25updated for version 7.0187Bram Moolenaar
2005-09-05updated for version 7.0141Bram Moolenaar
2005-06-25updated for version 7.0093Bram Moolenaar
2005-06-06updated for version 7.0081Bram Moolenaar
2005-06-05updated for version 7.0080Bram Moolenaar
2005-06-04updated for version 7.0079Bram Moolenaar
2004-12-19updated for version 7.0023Bram Moolenaar
2004-09-13updated for version 7.0016Bram Moolenaar
2004-06-13updated for version 7.0001Bram Moolenaar