mirror of
https://github.com/neovim/neovim.git
synced 2026-04-25 16:54:12 +00:00
Problem: The evalfunc.c file is too big.
Solution: Move sign functionality to sign.c.
b60d8514b8
16 lines
282 B
C
16 lines
282 B
C
#ifndef NVIM_SIGN_H
|
|
#define NVIM_SIGN_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/eval/funcs.h"
|
|
#include "nvim/ex_cmds_defs.h"
|
|
#include "nvim/sign_defs.h"
|
|
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "sign.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SIGN_H
|