refactor(screen): screen.c delenda est

drawscreen.c vs screen.c makes absolutely no sense.
The screen exists only to draw upon it, therefore helper functions
are distributed randomly between screen.c and the file that
does the redrawing. In addition screen.c does a lot of drawing on the
screen.

It made more sense for vim/vim as our grid.c is their screen.c

Not sure if we want to dump all the code for option chars into
optionstr.c, so keep these in a optionchar.c for now.
This commit is contained in:
bfredl
2023-03-14 11:49:46 +01:00
parent ef31444ccc
commit d6ecead364
37 changed files with 1069 additions and 1176 deletions

View File

@@ -25,7 +25,6 @@
#include "nvim/normal.h"
#include "nvim/option_defs.h"
#include "nvim/pos.h"
#include "nvim/screen.h"
#include "nvim/search.h"
#include "nvim/strings.h"
#include "nvim/textobject.h"