aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/api_wrappers.c
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2024-04-28 09:20:06 +0200
committerGitHub <noreply@github.com>2024-04-28 09:20:06 +0200
commitc3061a40f7012b4cd9afcaa6e8b856e946aed528 (patch)
tree7f1d122699e34c5f8248330e7d5f7c51b6db7d37 /src/nvim/lua/api_wrappers.c
parenta41546d4ac60cecc48b83f85ea9d53ee2fb7dfbb (diff)
parent3711a0387a96d6531f3ae07a9b18fb8e2afc2e41 (diff)
downloadrneovim-c3061a40f7012b4cd9afcaa6e8b856e946aed528.tar.gz
rneovim-c3061a40f7012b4cd9afcaa6e8b856e946aed528.tar.bz2
rneovim-c3061a40f7012b4cd9afcaa6e8b856e946aed528.zip
Merge pull request #28532 from bfredl/regularization
refactor(build): make all generated c files headers
Diffstat (limited to 'src/nvim/lua/api_wrappers.c')
-rw-r--r--src/nvim/lua/api_wrappers.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nvim/lua/api_wrappers.c b/src/nvim/lua/api_wrappers.c
new file mode 100644
index 0000000000..2b7b0c6471
--- /dev/null
+++ b/src/nvim/lua/api_wrappers.c
@@ -0,0 +1,18 @@
+#include <lauxlib.h>
+#include <lua.h>
+#include <lualib.h>
+
+#include "nvim/api/private/defs.h"
+#include "nvim/api/private/dispatch.h"
+#include "nvim/api/private/helpers.h"
+#include "nvim/ex_docmd.h"
+#include "nvim/ex_getln.h"
+#include "nvim/func_attr.h"
+#include "nvim/globals.h"
+#include "nvim/lua/converter.h"
+#include "nvim/lua/executor.h"
+#include "nvim/memory.h"
+
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "lua_api_c_bindings.generated.h"
+#endif