diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-05-10 09:37:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 09:37:47 +0200 |
commit | 26139d3085dd107c3a987d51288cca9f838b8949 (patch) | |
tree | 9618b3f0ffad35b4c97540707461a9137d0ebd35 /src/nvim/ops.h | |
parent | d2be261e8d1bcf165346255ae701564a5f62bf7d (diff) | |
parent | 13a9bd006f08819184963b61909f0595321adc51 (diff) | |
download | rneovim-26139d3085dd107c3a987d51288cca9f838b8949.tar.gz rneovim-26139d3085dd107c3a987d51288cca9f838b8949.tar.bz2 rneovim-26139d3085dd107c3a987d51288cca9f838b8949.zip |
Merge pull request #14501 from chentau/extmark_setlines
Refactor nvim_buf_set_lines to use `extmark_splice` instead of `extmark_adjust`
Diffstat (limited to 'src/nvim/ops.h')
-rw-r--r-- | src/nvim/ops.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ops.h b/src/nvim/ops.h index a8867e02ea..77d6b4435f 100644 --- a/src/nvim/ops.h +++ b/src/nvim/ops.h @@ -6,6 +6,7 @@ #include "nvim/macros.h" #include "nvim/ascii.h" #include "nvim/types.h" +#include "nvim/extmark.h" #include "nvim/eval/typval.h" #include "nvim/os/time.h" #include "nvim/normal.h" // for MotionType and oparg_T |