summaryrefslogtreecommitdiff
path: root/src/move.c
AgeCommit message (Collapse)Author
2016-03-19patch 7.4.1611Bram Moolenaar
Problem: The versplit feature makes the code uneccessary complicated. Solution: Remove FEAT_VERTSPLIT, always support vertical splits when FEAT_WINDOWS is defined.
2016-01-30patch 7.4.1211Bram 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.
2015-09-09patch 7.4.863Bram Moolenaar
Problem: plines_nofill() used without the diff feature. Solution: Define PLINES_NOFILL().
2015-09-08patch 7.4.856Bram Moolenaar
Problem: "zt" still doesn't work well with filler lines. (Gary Johnson) Solution: Check for filler lines above the cursor. (Christian Brabandt)
2015-09-01patch 7.4.853Bram Moolenaar
Problem: "zt" in diff mode does not always work properly. (Gary Johnson) Solution: Don't count filler lines twice. (Christian Brabandt)
2015-08-11patch 7.4.822Bram Moolenaar
Problem: More problems reported by coverity. Solution: Avoid the warnings. (Christian Brabandt)
2015-03-20updated for version 7.4.669Bram Moolenaar
Problem: When netbeans is active the sign column always shows up. Solution: Only show the sign column once a sign has been added. (Xavier de Gaye)
2014-12-13updated for version 7.4.550Bram Moolenaar
Problem: curs_rows() function is always called with the second argument false. Solution: Remove the argument. (Christian Brabandt) validate_botline_win() can then also be removed.
2014-09-23updated for version 7.4.458Bram Moolenaar
Problem: Issue 252: Cursor moves in a zero-height window. Solution: Check for zero height. (idea by Christian Brabandt)
2014-03-28updated for version 7.4.226Bram Moolenaar
Problem: Cursurline highlighting not redrawn when scrolling. (John Marriott) Solution: Check for required redraw in two places.
2014-03-27updated for version 7.4.219Bram Moolenaar
Problem: When 'relativenumber' or 'cursorline' are set the window is redrawn much to often. (Patrick Hemmer, Dominique Pelle) Solution: Check the VALID_CROW flag instead of VALID_WROW.
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.
2014-02-11updated for version 7.4.177Bram Moolenaar
Problem: Compiler warning for unused variable. (Tony Mechelynck) Solution: Add #ifdef.
2014-02-11updated for version 7.4.173Bram Moolenaar
Problem: When using scrollbind the cursor can end up below the last line. (mvxxc) Solution: Reset w_botfill when scrolling up. (Christian Brabandt)
2012-11-28updated for version 7.3.739Bram Moolenaar
Problem: Computing number of lines may have an integer overflow. Solution: Check for MAXCOL explicitly. (Dominique Pelle)
2012-03-28updated for version 7.3.482Bram Moolenaar
Problem: With 'cursorbind' set moving up/down does not always keep the same column. Solution: Set curswant appropriately. (Gary Johnson)
2012-03-16updated for version 7.3.473Bram Moolenaar
Problem: 'cursorbind' does not work correctly in combination with 'virtualedit' set to "all". Solution: Copy coladd. (Gary Johnson)
2012-02-04updated for version 7.3.426Bram Moolenaar
Problem: With '$' in 'cpoptions' the $ is not displayed in the first column. Solution: Use -1 instead of 0 as a special value. (Hideki Eiraku and Hirohito Higashi)
2012-01-10updated for version 7.3.400Bram Moolenaar
Problem: Compiler warnings for shadowed variables. Solution: Remove or rename the variables.
2011-02-01updated for version 7.3.111Bram Moolenaar
Problem: Executing a :normal command in 'statusline' evaluation causes the cursor to move. (Dominique Pelle) Solution: When updating the cursor for 'cursorbind' allow the cursor beyond the end of the line. When evaluating 'statusline' temporarily reset 'cursorbind'.
2011-01-22updated for version 7.3.106Bram Moolenaar
Problem: When 'cursorbind' is set another window may scroll unexpectedly when 'scrollbind' is also set. (Xavier Wang) Solution: Don't call update_topline() if 'scrollbind' is set.
2010-08-08Remove unused code.Bram Moolenaar
2010-06-05Add the conceal patch from Vince Negri.Bram Moolenaar
2010-05-22Add :nbstart and :nbclose.Bram Moolenaar
2010-05-16Add 'relativenumber' patch from Markus Heidelberg.Bram Moolenaar
2010-05-15First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar
2010-02-17updated for version 7.2.366Bram Moolenaar
Problem: CTRL-B doesn't go back to the first line of the buffer. Solution: Avoid an overflow when adding MAXCOL.
2010-02-03updated for version 7.2.355Bram Moolenaar
Problem: Computing the cursor column in validate_cursor_col() is wrong when line numbers are used and 'n' is not in 'cpoptions', causing the popup menu to be positioned wrong. Solution: Correctly use the offset. (partly by Dominique Pelle)
2009-11-03updated for version 7.2-277Bram Moolenaar
2009-05-15updated for version 7.2-174Bram Moolenaar
2008-11-15updated for version 7.2-042Bram Moolenaar
2008-07-13updated for version 7.2b-000Bram Moolenaar
2007-05-05updated for version 7.1aBram Moolenaar
2006-03-13updated for version 7.0223Bram Moolenaar
2006-03-12updated for version 7.0222Bram Moolenaar
2005-09-25updated for version 7.0150Bram Moolenaar
2005-02-12updated for version 7.0050Bram Moolenaar
2005-02-07updated for version 7.0049Bram Moolenaar
2005-01-19updated for version 7.0042Bram Moolenaar
2004-12-09updated for version 7.0021Bram Moolenaar
2004-07-03updated for version 7.0005Bram Moolenaar
2004-06-13updated for version 7.0001Bram Moolenaar