diff options
author | luukvbaal <31730729+luukvbaal@users.noreply.github.com> | 2022-11-10 12:05:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 19:05:16 +0800 |
commit | 69507c0204cfe284e42865c9c89baec0f351b2c1 (patch) | |
tree | abe2c01c88913f2d619a649a9a464ef7f230f5a5 /src/nvim/buffer.h | |
parent | befae73044fa367c6d0d82bf4b61501010e7545d (diff) | |
download | rneovim-69507c0204cfe284e42865c9c89baec0f351b2c1.tar.gz rneovim-69507c0204cfe284e42865c9c89baec0f351b2c1.tar.bz2 rneovim-69507c0204cfe284e42865c9c89baec0f351b2c1.zip |
refactor: move tabline code to statusline.c (#21008)
* refactor: move tabline code to statusline.c
Problem: Tabline code is closely related to statusline, but still left over in drawscreen.c and screen.c.
Solution: Move it to statusline.c.
* refactor: add statusline_defs.h
Diffstat (limited to 'src/nvim/buffer.h')
-rw-r--r-- | src/nvim/buffer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/buffer.h b/src/nvim/buffer.h index 7380bb045a..84c402d782 100644 --- a/src/nvim/buffer.h +++ b/src/nvim/buffer.h @@ -4,7 +4,6 @@ #include "nvim/eval/typval.h" #include "nvim/ex_cmds_defs.h" #include "nvim/func_attr.h" -#include "nvim/grid_defs.h" // for StlClickRecord #include "nvim/macros.h" #include "nvim/memline.h" #include "nvim/pos.h" // for linenr_T |