aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc1.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/misc1.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/misc1.c')
-rw-r--r--src/nvim/misc1.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c
index 84d8c995a6..e87c754eb8 100644
--- a/src/nvim/misc1.c
+++ b/src/nvim/misc1.c
@@ -884,8 +884,7 @@ open_line (
&& curbuf->b_p_lisp
&& curbuf->b_p_ai) {
fixthisline(get_lisp_indent);
- p = get_cursor_line_ptr();
- ai_col = (colnr_T)(skipwhite(p) - p);
+ ai_col = (colnr_T)getwhitecols_curline();
}
/*
* May do indenting after opening a new line.
@@ -898,8 +897,7 @@ open_line (
? KEY_OPEN_FORW
: KEY_OPEN_BACK, ' ', linewhite(curwin->w_cursor.lnum))) {
do_c_expr_indent();
- p = get_cursor_line_ptr();
- ai_col = (colnr_T)(skipwhite(p) - p);
+ ai_col = (colnr_T)getwhitecols_curline();
}
if (vreplace_mode != 0)
State = vreplace_mode;