diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-12 07:36:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 07:36:28 +0200 |
commit | 931e15471c10857af73aa0f0caa3aaaefe5986be (patch) | |
tree | 08d50983aa75fb9960bd3f4cc5c79af6bc5d5254 /src/nvim/normal.c | |
parent | 61df24b9982c26c068e5fafbc79fd059a067d998 (diff) | |
parent | e15c34fbc29b4d98566f80a0d65436081a32e5b5 (diff) | |
download | rneovim-931e15471c10857af73aa0f0caa3aaaefe5986be.tar.gz rneovim-931e15471c10857af73aa0f0caa3aaaefe5986be.tar.bz2 rneovim-931e15471c10857af73aa0f0caa3aaaefe5986be.zip |
Merge #8984 from janlazo/vim-8.1.0034
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 09444ace0f..217bf4f876 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -6496,8 +6496,8 @@ void may_start_select(int c) */ static void n_start_visual_mode(int c) { - /* Check for redraw before changing the state. */ - conceal_check_cursur_line(); + // Check for redraw before changing the state. + conceal_check_cursor_line(); VIsual_mode = c; VIsual_active = true; @@ -6514,8 +6514,8 @@ static void n_start_visual_mode(int c) foldAdjustVisual(); setmouse(); - /* Check for redraw after changing the state. */ - conceal_check_cursur_line(); + // Check for redraw after changing the state. + conceal_check_cursor_line(); if (p_smd && msg_silent == 0) redraw_cmdline = true; /* show visual mode later */ |