diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-12-10 18:05:49 +0100 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-12-10 18:15:33 +0100 |
commit | df54d82b7c98ae5b1608c56e0dc216d77ebb3101 (patch) | |
tree | 760e7191587e7680ce2dfb52e6042ccbccaa1d7a /src/nvim/input.h | |
parent | dc37beed751ba64a61b64d1ed4d29cc8ba1e5bea (diff) | |
download | rneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.tar.gz rneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.tar.bz2 rneovim-df54d82b7c98ae5b1608c56e0dc216d77ebb3101.zip |
refactor(misc1): move out high-level input functions to a new file: input.c
Possibly dialog code is messages.c could be moved here as well.
misc1.c is now empty, so delete it.
Diffstat (limited to 'src/nvim/input.h')
-rw-r--r-- | src/nvim/input.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/input.h b/src/nvim/input.h new file mode 100644 index 0000000000..7975f21215 --- /dev/null +++ b/src/nvim/input.h @@ -0,0 +1,9 @@ +#ifndef NVIM_INPUT_H +#define NVIM_INPUT_H + +#include "nvim/vim.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +# include "input.h.generated.h" +#endif +#endif // NVIM_INPUT_H |