diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-11-07 09:24:00 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2020-11-07 09:55:17 +0100 |
commit | 8497d4b3ea9822cfb4d2bf2437997e837fd4827c (patch) | |
tree | dc35be5a218677b4a927fd08d3d28a7e1fb1d9fa /src/nvim/buffer_defs.h | |
parent | da134270d3e9f8a4824b0e0540bf017f7e59b06e (diff) | |
download | rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.tar.gz rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.tar.bz2 rneovim-8497d4b3ea9822cfb4d2bf2437997e837fd4827c.zip |
decoration: split out "decoration" from "extmark" module
Decorations will only grow more complex. move the to a separate
file, so that extmark.c remains about extmarks.
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 4efc341875..f203bf91aa 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -568,7 +568,7 @@ struct file_buffer { // negative when lines were deleted wininfo_T *b_wininfo; // list of last used info for each window int b_mod_tick_syn; // last display tick syntax was updated - int b_mod_tick_deco; // last display tick decoration providers + int b_mod_tick_decor; // last display tick decoration providers // where invoked long b_mtime; // last change time of original file |