mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
refactor/single-include (#6563)
This commit is contained in:
parent
654c50b227
commit
e41c044b53
@ -440,13 +440,10 @@ set(NO_SINGLE_CHECK_HEADERS
|
|||||||
quickfix.h
|
quickfix.h
|
||||||
regexp.h
|
regexp.h
|
||||||
regexp_defs.h
|
regexp_defs.h
|
||||||
screen.h
|
|
||||||
search.h
|
|
||||||
sha256.h
|
sha256.h
|
||||||
sign_defs.h
|
sign_defs.h
|
||||||
spell.h
|
spell.h
|
||||||
spellfile.h
|
spellfile.h
|
||||||
syntax.h
|
|
||||||
syntax_defs.h
|
syntax_defs.h
|
||||||
tag.h
|
tag.h
|
||||||
terminal.h
|
terminal.h
|
||||||
|
@ -3,6 +3,10 @@
|
|||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
#include "nvim/types.h"
|
||||||
|
#include "nvim/buffer_defs.h"
|
||||||
|
#include "nvim/pos.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* flags for update_screen()
|
* flags for update_screen()
|
||||||
* The higher the value, the higher the priority
|
* The higher the value, the higher the priority
|
||||||
|
@ -4,6 +4,12 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "nvim/types.h"
|
||||||
|
#include "nvim/buffer_defs.h"
|
||||||
|
#include "nvim/eval/typval.h"
|
||||||
|
#include "nvim/normal.h"
|
||||||
|
#include "nvim/os/time.h"
|
||||||
|
|
||||||
/* Values for the find_pattern_in_path() function args 'type' and 'action': */
|
/* Values for the find_pattern_in_path() function args 'type' and 'action': */
|
||||||
#define FIND_ANY 1
|
#define FIND_ANY 1
|
||||||
#define FIND_DEFINE 2
|
#define FIND_DEFINE 2
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
#include "nvim/buffer_defs.h"
|
#include "nvim/buffer_defs.h"
|
||||||
|
#include "nvim/ex_cmds_defs.h"
|
||||||
|
|
||||||
/// Terminal highlighting attribute bits.
|
/// Terminal highlighting attribute bits.
|
||||||
/// Attributes above HL_ALL are used for syntax highlighting.
|
/// Attributes above HL_ALL are used for syntax highlighting.
|
||||||
|
Loading…
Reference in New Issue
Block a user