mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00

move `call_shell` to misc1.c Move some fns to state.c Move some fns to option.c Move some fns to memline.c Move `vim_chdir*` fns to file_search.c Move some fns to new module, bytes.c Move some fns to fileio.c
13 lines
194 B
C
13 lines
194 B
C
#ifndef NVIM_CURSOR_H
|
|
#define NVIM_CURSOR_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/vim.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "cursor.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_CURSOR_H
|