diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-27 20:27:32 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-27 21:57:51 +0100 |
commit | 6c14ae6bfaf51415b555e9a6b85d1d280976358d (patch) | |
tree | 466b580b496ff7138407cf3187534a7cbf67a9d1 /src/nvim/lua | |
parent | e3f735ef101d670555f44226614a5c3557053b1f (diff) | |
download | rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.tar.gz rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.tar.bz2 rneovim-6c14ae6bfaf51415b555e9a6b85d1d280976358d.zip |
refactor: rename types.h to types_defs.h
Diffstat (limited to 'src/nvim/lua')
-rw-r--r-- | src/nvim/lua/converter.c | 2 | ||||
-rw-r--r-- | src/nvim/lua/executor.h | 2 | ||||
-rw-r--r-- | src/nvim/lua/stdlib.c | 2 | ||||
-rw-r--r-- | src/nvim/lua/treesitter.c | 2 |
4 files changed, 4 insertions, 4 deletions
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" |