mirror of
https://github.com/neovim/neovim.git
synced 2025-10-17 07:16:09 +00:00

Problem: The search.c file is a bit big.
Solution: Split off the text object code to a separate file. (Yegappan
Lakshmanan, closes vim/vim#6007)
ed8ce057b7
12 lines
285 B
C
12 lines
285 B
C
#ifndef NVIM_TEXTOBJECT_H
|
|
#define NVIM_TEXTOBJECT_H
|
|
|
|
#include "nvim/normal.h" // for oparg_T
|
|
#include "nvim/pos.h" // for linenr_T
|
|
#include "nvim/vim.h" // for Direction
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "textobject.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_TEXTOBJECT_H
|