diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-01-16 02:14:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 02:14:41 +0100 |
commit | c06995b34d604a37f80ee1174fcb3530dbd59206 (patch) | |
tree | dc1b063644fb484f266e95e12c66bbbfdfa2d38c /src/nvim/normal.c | |
parent | 26251d6d0681194e7dc57fa2dfb8857576faed21 (diff) | |
parent | 9cabe826ba8dfb5dd9464fdf09e28bb25c65ab71 (diff) | |
download | rneovim-c06995b34d604a37f80ee1174fcb3530dbd59206.tar.gz rneovim-c06995b34d604a37f80ee1174fcb3530dbd59206.tar.bz2 rneovim-c06995b34d604a37f80ee1174fcb3530dbd59206.zip |
Merge #7858 'vim-patch: spell-related patches'
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 1103fe15d2..ab20be7246 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -5687,6 +5687,8 @@ static void nv_brackets(cmdarg_T *cap) cap->nchar == 's', false, NULL) == 0) { clearopbeep(cap->oap); break; + } else { + curwin->w_set_curswant = true; } if (cap->oap->op_type == OP_NOP && (fdo_flags & FDO_SEARCH) && KeyTyped) foldOpenCursor(); |