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/regexp.h | |
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/regexp.h')
-rw-r--r-- | src/nvim/regexp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp.h b/src/nvim/regexp.h index 426ac97493..b618f01e59 100644 --- a/src/nvim/regexp.h +++ b/src/nvim/regexp.h @@ -3,7 +3,7 @@ #include "nvim/buffer_defs.h" // IWYU pragma: keep #include "nvim/pos_defs.h" #include "nvim/regexp_defs.h" // IWYU pragma: export -#include "nvim/types.h" +#include "nvim/types_defs.h" // Second argument for vim_regcomp(). #define RE_MAGIC 1 ///< 'magic' option |