diff options
author | Thomas Vigouroux <tomvig38@gmail.com> | 2020-10-02 09:56:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 09:56:57 +0200 |
commit | c10c2fab5b4509a7ff50526b56c669f30ebf87c9 (patch) | |
tree | cd8f28d2b559959e208f303cf1584934391efc61 /src/nvim/extmark.c | |
parent | a9851bfbb1bd442fa4fbe470e1c134a1b6e9b13f (diff) | |
parent | f1b39f91a5be7f3bf61b0e0d129dce49d51ff360 (diff) | |
download | rneovim-c10c2fab5b4509a7ff50526b56c669f30ebf87c9.tar.gz rneovim-c10c2fab5b4509a7ff50526b56c669f30ebf87c9.tar.bz2 rneovim-c10c2fab5b4509a7ff50526b56c669f30ebf87c9.zip |
Merge pull request #12968 from erw7/fix-substitute2
fix substitute problem with inccommand
Diffstat (limited to 'src/nvim/extmark.c')
-rw-r--r-- | src/nvim/extmark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/extmark.c b/src/nvim/extmark.c index 17141f12fd..0de396fd1f 100644 --- a/src/nvim/extmark.c +++ b/src/nvim/extmark.c @@ -783,7 +783,7 @@ void bufhl_add_hl_pos_offset(buf_T *buf, } (void)extmark_set(buf, (uint64_t)src_id, 0, (int)lnum-1, hl_start, (int)lnum-1+end_off, hl_end, - decor, kExtmarkUndo); + decor, kExtmarkNoUndo); } } |