From 6c14ae6bfaf51415b555e9a6b85d1d280976358d Mon Sep 17 00:00:00 2001 From: dundargoc Date: Mon, 27 Nov 2023 20:27:32 +0100 Subject: refactor: rename types.h to types_defs.h --- src/nvim/lua/converter.c | 2 +- src/nvim/lua/executor.h | 2 +- src/nvim/lua/stdlib.c | 2 +- src/nvim/lua/treesitter.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/nvim/lua') diff --git a/src/nvim/lua/converter.c b/src/nvim/lua/converter.c index ed8cc3a612..ca4812597e 100644 --- a/src/nvim/lua/converter.c +++ b/src/nvim/lua/converter.c @@ -25,7 +25,7 @@ #include "nvim/lua/executor.h" #include "nvim/macros.h" #include "nvim/message.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/vim.h" /// Determine, which keys lua table contains diff --git a/src/nvim/lua/executor.h b/src/nvim/lua/executor.h index 91775e0322..6caad4bd7a 100644 --- a/src/nvim/lua/executor.h +++ b/src/nvim/lua/executor.h @@ -14,7 +14,7 @@ #include "nvim/lua/converter.h" #include "nvim/macros.h" #include "nvim/map.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/usercmd.h" // Generated by msgpack-gen.lua diff --git a/src/nvim/lua/stdlib.c b/src/nvim/lua/stdlib.c index c0815133aa..14658a6bc1 100644 --- a/src/nvim/lua/stdlib.c +++ b/src/nvim/lua/stdlib.c @@ -36,7 +36,7 @@ #include "nvim/pos_defs.h" #include "nvim/regexp.h" #include "nvim/runtime.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/vim.h" #ifdef INCLUDE_GENERATED_DECLARATIONS diff --git a/src/nvim/lua/treesitter.c b/src/nvim/lua/treesitter.c index 90767e0c50..fcdd0540e0 100644 --- a/src/nvim/lua/treesitter.c +++ b/src/nvim/lua/treesitter.c @@ -26,7 +26,7 @@ #include "nvim/memory.h" #include "nvim/pos_defs.h" #include "nvim/strings.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #define TS_META_PARSER "treesitter_parser" #define TS_META_TREE "treesitter_tree" -- cgit