diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-28 07:47:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 07:47:36 +0800 |
commit | 718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad (patch) | |
tree | b9dcecd6373c0f9a51c5dde37c2c7c7cf5f43c62 /src/nvim/regexp.h | |
parent | 6c14ae6bfaf51415b555e9a6b85d1d280976358d (diff) | |
download | rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.tar.gz rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.tar.bz2 rneovim-718053b7a97c4e2fbaa6077d3c9f4dc7012c8aad.zip |
refactor: fix runtime_defs.h (#26259)
Diffstat (limited to 'src/nvim/regexp.h')
-rw-r--r-- | src/nvim/regexp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/regexp.h b/src/nvim/regexp.h index b618f01e59..447f4860a9 100644 --- a/src/nvim/regexp.h +++ b/src/nvim/regexp.h @@ -1,9 +1,9 @@ #pragma once #include "nvim/buffer_defs.h" // IWYU pragma: keep -#include "nvim/pos_defs.h" +#include "nvim/pos_defs.h" // IWYU pragma: keep #include "nvim/regexp_defs.h" // IWYU pragma: export -#include "nvim/types_defs.h" +#include "nvim/types_defs.h" // IWYU pragma: keep // Second argument for vim_regcomp(). #define RE_MAGIC 1 ///< 'magic' option |