diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-06-12 21:01:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-12 21:01:16 +0200 |
commit | feba56af7d032c948a78c21735502bebe45f8361 (patch) | |
tree | e8c240f53b4448aeb7352a59fcab6de58ee298fc /src/nvim/api/command.h | |
parent | 2de0d6714497e4259f467516e52852c1016d5318 (diff) | |
parent | 612944c5863caabc7b71b66c9deb73a983c69803 (diff) | |
download | rneovim-feba56af7d032c948a78c21735502bebe45f8361.tar.gz rneovim-feba56af7d032c948a78c21735502bebe45f8361.tar.bz2 rneovim-feba56af7d032c948a78c21735502bebe45f8361.zip |
Merge pull request #18936 from bfredl/apioption
refactor(api): reorganize code
Diffstat (limited to 'src/nvim/api/command.h')
-rw-r--r-- | src/nvim/api/command.h | 11 |
1 files changed, 11 insertions, 0 deletions
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 |