diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-10-02 10:45:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-02 10:45:33 +0800 |
commit | 09a17f91d0d362c6e58bfdbe3ccdeacffb0b44b9 (patch) | |
tree | 204374657c5c6a7815d4aa612563c32feec18b28 /src/nvim/profile.c | |
parent | 9ce1623837a817c3f4f5deff9c8ba862578b6009 (diff) | |
download | rneovim-09a17f91d0d362c6e58bfdbe3ccdeacffb0b44b9.tar.gz rneovim-09a17f91d0d362c6e58bfdbe3ccdeacffb0b44b9.tar.bz2 rneovim-09a17f91d0d362c6e58bfdbe3ccdeacffb0b44b9.zip |
refactor: move cmdline completion types to cmdexpand_defs.h (#25465)
Diffstat (limited to 'src/nvim/profile.c')
-rw-r--r-- | src/nvim/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/profile.c b/src/nvim/profile.c index 3162a446c0..73ad534de7 100644 --- a/src/nvim/profile.c +++ b/src/nvim/profile.c @@ -11,6 +11,7 @@ #include "nvim/ascii.h" #include "nvim/charset.h" +#include "nvim/cmdexpand_defs.h" #include "nvim/debugger.h" #include "nvim/eval.h" #include "nvim/eval/typval_defs.h" @@ -30,7 +31,6 @@ #include "nvim/profile.h" #include "nvim/runtime.h" #include "nvim/types.h" -#include "nvim/vim.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "profile.c.generated.h" |