mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00

* refactor: format header files with uncrustify * fixup(justin): skip formatting of terminfo_defs.h * fixup: force winsock2 to be included first * fixup: simplify disable/enable directive to "uncrustify:off/on"
15 lines
270 B
C
15 lines
270 B
C
#ifndef NVIM_LUA_TREESITTER_H
|
|
#define NVIM_LUA_TREESITTER_H
|
|
|
|
#include <lauxlib.h>
|
|
#include <lua.h>
|
|
#include <lualib.h>
|
|
|
|
#include "tree_sitter/api.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "lua/treesitter.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_LUA_TREESITTER_H
|