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/api | |
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/api')
-rw-r--r-- | src/nvim/api/buffer.c | 2 | ||||
-rw-r--r-- | src/nvim/api/command.c | 2 | ||||
-rw-r--r-- | src/nvim/api/extmark.h | 2 | ||||
-rw-r--r-- | src/nvim/api/private/converter.c | 2 | ||||
-rw-r--r-- | src/nvim/api/private/defs.h | 2 | ||||
-rw-r--r-- | src/nvim/api/private/dispatch.h | 2 | ||||
-rw-r--r-- | src/nvim/api/private/helpers.c | 2 | ||||
-rw-r--r-- | src/nvim/api/ui.c | 2 | ||||
-rw-r--r-- | src/nvim/api/vim.c | 2 | ||||
-rw-r--r-- | src/nvim/api/window.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index ec667a8953..3f4ab2760d 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -34,7 +34,7 @@ #include "nvim/move.h" #include "nvim/ops.h" #include "nvim/pos_defs.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/undo.h" #include "nvim/vim.h" diff --git a/src/nvim/api/command.c b/src/nvim/api/command.c index 2d3bc26e62..f9e2c58dd9 100644 --- a/src/nvim/api/command.c +++ b/src/nvim/api/command.c @@ -29,7 +29,7 @@ #include "nvim/pos_defs.h" #include "nvim/regexp.h" #include "nvim/strings.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/usercmd.h" #include "nvim/vim.h" #include "nvim/window.h" diff --git a/src/nvim/api/extmark.h b/src/nvim/api/extmark.h index 0a28be98c5..2989dee53d 100644 --- a/src/nvim/api/extmark.h +++ b/src/nvim/api/extmark.h @@ -7,7 +7,7 @@ #include "nvim/decoration_defs.h" // IWYU pragma: keep #include "nvim/macros.h" #include "nvim/map.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" EXTERN Map(String, int) namespace_ids INIT( = MAP_INIT); EXTERN handle_T next_namespace_id INIT( = 1); diff --git a/src/nvim/api/private/converter.c b/src/nvim/api/private/converter.c index 228172fd28..40ec680184 100644 --- a/src/nvim/api/private/converter.c +++ b/src/nvim/api/private/converter.c @@ -14,7 +14,7 @@ #include "nvim/func_attr.h" #include "nvim/lua/executor.h" #include "nvim/memory.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/vim.h" /// Helper structure for vim_to_object diff --git a/src/nvim/api/private/defs.h b/src/nvim/api/private/defs.h index 067592ed4e..25c8377518 100644 --- a/src/nvim/api/private/defs.h +++ b/src/nvim/api/private/defs.h @@ -6,7 +6,7 @@ #include "klib/kvec.h" #include "nvim/func_attr.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #define ARRAY_DICT_INIT KV_INITIAL_VALUE #define STRING_INIT { .data = NULL, .size = 0 } diff --git a/src/nvim/api/private/dispatch.h b/src/nvim/api/private/dispatch.h index 0a651ebd1c..3d12b941f4 100644 --- a/src/nvim/api/private/dispatch.h +++ b/src/nvim/api/private/dispatch.h @@ -5,7 +5,7 @@ #include "nvim/api/private/defs.h" #include "nvim/memory.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" typedef Object (*ApiDispatchWrapper)(uint64_t channel_id, Array args, Arena *arena, Error *error); diff --git a/src/nvim/api/private/helpers.c b/src/nvim/api/private/helpers.c index 33defa63ef..2599850452 100644 --- a/src/nvim/api/private/helpers.c +++ b/src/nvim/api/private/helpers.c @@ -32,7 +32,7 @@ #include "nvim/message.h" #include "nvim/msgpack_rpc/helpers.h" #include "nvim/pos_defs.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/ui.h" #include "nvim/version.h" diff --git a/src/nvim/api/ui.c b/src/nvim/api/ui.c index 7366e24703..9eb1cc675f 100644 --- a/src/nvim/api/ui.c +++ b/src/nvim/api/ui.c @@ -29,7 +29,7 @@ #include "nvim/msgpack_rpc/channel.h" #include "nvim/msgpack_rpc/helpers.h" #include "nvim/option.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/ui.h" #include "nvim/vim.h" diff --git a/src/nvim/api/vim.c b/src/nvim/api/vim.c index 73001cfb6a..858fda68b9 100644 --- a/src/nvim/api/vim.c +++ b/src/nvim/api/vim.c @@ -65,7 +65,7 @@ #include "nvim/statusline.h" #include "nvim/strings.h" #include "nvim/terminal.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/ui.h" #include "nvim/vim.h" #include "nvim/window.h" diff --git a/src/nvim/api/window.c b/src/nvim/api/window.c index 15460ec368..de5b40940f 100644 --- a/src/nvim/api/window.c +++ b/src/nvim/api/window.c @@ -24,7 +24,7 @@ #include "nvim/move.h" #include "nvim/plines.h" #include "nvim/pos_defs.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/window.h" /// Gets the current buffer in a window |