Patch 7.4.1101
Problem: With 'rightleft' and concealing the cursor may move to the wrong
position.
Solution: Compute the column differently when 'rightleft' is set. (Hirohito
Higashi)
Files: src/screen.c
*** ../vim-7.4.1100/src/screen.c 2015-12-17 21:14:52.444944723 +0100
--- src/screen.c 2016-01-15 22:47:41.738802412 +0100
***************
*** 4976,4982 ****
&& conceal_cursor_line(wp)
&& (int)wp->w_virtcol <= vcol + n_skip)
{
! wp->w_wcol = col - boguscols;
wp->w_wrow = row;
did_wcol = TRUE;
}
--- 4976,4987 ----
&& conceal_cursor_line(wp)
&& (int)wp->w_virtcol <= vcol + n_skip)
{
! # ifdef FEAT_RIGHTLEFT
! if (wp->w_p_rl)
! wp->w_wcol = W_WIDTH(wp) - col + boguscols - 1;
! else
! # endif
! wp->w_wcol = col - boguscols;
wp->w_wrow = row;
did_wcol = TRUE;
}
*** ../vim-7.4.1100/src/version.c 2016-01-15 22:34:31.819606560 +0100
--- src/version.c 2016-01-15 22:47:30.450927855 +0100
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 1101,
/**/
--
FIRST VILLAGER: We have found a witch. May we burn her?
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.