aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/spell.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-23 04:43:44 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-23 10:00:53 -0400
commitd677ae5f6461dcd78f08caec2c4fa72e6e275137 (patch)
tree939b783497deef4f314f008f7c593285672f02a9 /src/nvim/spell.c
parentfe57a8a4e410e19f05a4137709632ee375b1c2aa (diff)
downloadrneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.tar.gz
rneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.tar.bz2
rneovim-d677ae5f6461dcd78f08caec2c4fa72e6e275137.zip
vim-patch:8.0.1041: bogus characters when indenting during visual-block append
Problem: Bogus characters appear when indenting kicks in while doing a visual-block append. Solution: Recompute when indenting is done. (Christian Brabandt) https://github.com/vim/vim/commit/e2e69e48134cbfdedea7802810932f8592705024
Diffstat (limited to 'src/nvim/spell.c')
-rw-r--r--src/nvim/spell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/spell.c b/src/nvim/spell.c
index 1cb679245b..c05a1d107a 100644
--- a/src/nvim/spell.c
+++ b/src/nvim/spell.c
@@ -1399,10 +1399,10 @@ spell_move_to (
// For checking first word with a capital skip white space.
if (capcol == 0)
- capcol = (int)(skipwhite(line) - line);
+ capcol = (int)getwhitecols(line);
else if (curline && wp == curwin) {
// For spellbadword(): check if first word needs a capital.
- col = (int)(skipwhite(line) - line);
+ col = (int)getwhitecols(line);
if (check_need_cap(lnum, col))
capcol = col;
@@ -2976,7 +2976,7 @@ static bool check_need_cap(linenr_T lnum, colnr_T col)
line = get_cursor_line_ptr();
endcol = 0;
- if ((int)(skipwhite(line) - line) >= (int)col) {
+ if (getwhitecols(line) >= (int)col) {
// At start of line, check if previous line is empty or sentence
// ends there.
if (lnum == 1)