diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-11-11 22:10:37 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-11-11 22:12:59 -0800 |
commit | a24eff0e2762657b4a82b2a7e78b4246f6462f95 (patch) | |
tree | 944f02de6bfa974248700f4da1c881638fbde243 /src/nvim/buffer_defs.h | |
parent | 2d7e1c32a87655b78cd23f2a3ad9a7a140493bd5 (diff) | |
download | rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.tar.gz rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.tar.bz2 rneovim-a24eff0e2762657b4a82b2a7e78b4246f6462f95.zip |
extmark: fix spelling of "Extmark"
The spelling "Extmark" is used almost everywhere, so don't spell it
"ExtMark" inconsistently.
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index 29eb32d40a..3b8e5b5632 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -810,7 +810,7 @@ struct file_buffer { PMap(uint64_t) *b_extmark_ns; // extmark namespaces kbtree_t(extmarklines) b_extlines; // extmarks - kvec_t(ExtMarkLine *) b_extmark_move_space; // temp space for extmarks + kvec_t(ExtmarkLine *) b_extmark_move_space; // temp space for extmarks // array of channel_id:s which have asked to receive updates for this // buffer. |