mirror of
https://github.com/neovim/neovim.git
synced 2026-07-29 20:08:03 +00:00
problem: code for drawing statusline is arbitrarily spreadout between drawscreen.c, screen.c and buffer.c solution: move it to a new file statusline.c - rename archaic internal name "status match" to public name "wildmenu" - showruler() does not show the ruler. it show anything which displays info about the cursor. Rename it accordingy.
11 lines
196 B
C
11 lines
196 B
C
#ifndef NVIM_STATUSLINE_H
|
|
#define NVIM_STATUSLINE_H
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "statusline.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_STATUSLINE_H
|