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/os | |
| 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/os')
| -rw-r--r-- | src/nvim/os/fileio.c | 2 | ||||
| -rw-r--r-- | src/nvim/os/fs.c | 2 | ||||
| -rw-r--r-- | src/nvim/os/fs.h | 2 | ||||
| -rw-r--r-- | src/nvim/os/lang.h | 2 | ||||
| -rw-r--r-- | src/nvim/os/shell.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/os/fileio.c b/src/nvim/os/fileio.c index 55c12f2986..4aad4c39c6 100644 --- a/src/nvim/os/fileio.c +++ b/src/nvim/os/fileio.c @@ -22,7 +22,7 @@ #include "nvim/os/fs.h" #include "nvim/os/os_defs.h" #include "nvim/rbuffer.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #ifdef MSWIN # include "nvim/os/os_win_console.h" diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 4e320a79c4..16151086c7 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -43,7 +43,7 @@ #include "nvim/option_vars.h" #include "nvim/os/os.h" #include "nvim/path.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/vim.h" #ifdef HAVE_SYS_UIO_H diff --git a/src/nvim/os/fs.h b/src/nvim/os/fs.h index 3e910be801..8ba0177909 100644 --- a/src/nvim/os/fs.h +++ b/src/nvim/os/fs.h @@ -6,7 +6,7 @@ #include <uv.h> // IWYU pragma: keep #include "nvim/os/fs_defs.h" // IWYU pragma: export -#include "nvim/types.h" +#include "nvim/types_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/fs.h.generated.h" diff --git a/src/nvim/os/lang.h b/src/nvim/os/lang.h index dd32378c69..87013ccec9 100644 --- a/src/nvim/os/lang.h +++ b/src/nvim/os/lang.h @@ -2,7 +2,7 @@ #include "nvim/cmdexpand_defs.h" #include "nvim/ex_cmds_defs.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/lang.h.generated.h" diff --git a/src/nvim/os/shell.c b/src/nvim/os/shell.c index ead5de32b5..817448d0d2 100644 --- a/src/nvim/os/shell.c +++ b/src/nvim/os/shell.c @@ -41,7 +41,7 @@ #include "nvim/rbuffer.h" #include "nvim/strings.h" #include "nvim/tag.h" -#include "nvim/types.h" +#include "nvim/types_defs.h" #include "nvim/ui.h" #include "nvim/vim.h" |