]> granicus.if.org Git - vim/commitdiff
Fix for cursor position in wrapped line with concealed text.
authorBram Moolenaar <Bram@vim.org>
Sat, 24 Jul 2010 15:39:52 +0000 (17:39 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 24 Jul 2010 15:39:52 +0000 (17:39 +0200)
runtime/doc/todo.txt
src/screen.c

index 119ec99f7e3084d60b8a9b32694a2632a8dfc6e6..acbacb5e6b47b54c05978a2d49b0d731f785865d 100644 (file)
@@ -40,8 +40,6 @@ Add documentation for Python 3 support.
     New patch 2010 Jul 24
     Docs patch by Dominique Pelle, Mar 25 included?
 
-Check position in wrapped line with 'concealcursor' set.
-
 'undoreload' option: when fewer lines than these consider a reload as a change
 action and save the text before the reload, don't clear undo info.
 
index e7c3ad2663f9b34a28bc549e4f5dcb7bc5746f2b..2106d90a02806502a84f47e05b7fec070bd2e529 100644 (file)
@@ -4500,6 +4500,7 @@ win_line(wp, lnum, startrow, endrow, nochange)
                && (int)wp->w_virtcol <= vcol + n_skip)
        {
            wp->w_wcol = col - boguscols;
+           wp->w_wrow = row;
            did_wcol = TRUE;
        }
 #endif