From 0d63fafcda3847a6ec8a9da42db7bf10ac917d14 Mon Sep 17 00:00:00 2001 From: bfredl Date: Sun, 12 Jun 2022 16:38:31 +0200 Subject: refactor(api): move command related API to separate file --- src/nvim/api/command.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/nvim/api/command.h (limited to 'src/nvim/api/command.h') diff --git a/src/nvim/api/command.h b/src/nvim/api/command.h new file mode 100644 index 0000000000..b1c9230551 --- /dev/null +++ b/src/nvim/api/command.h @@ -0,0 +1,11 @@ +#ifndef NVIM_API_COMMAND_H +#define NVIM_API_COMMAND_H + +#include "nvim/api/private/defs.h" +#include "nvim/decoration.h" +#include "nvim/ex_cmds.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "api/command.h.generated.h" +#endif +#endif // NVIM_API_COMMAND_H -- cgit