mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +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
11 lines
245 B
C
11 lines
245 B
C
#ifndef NVIM_TEXTFORMAT_H
|
|
#define NVIM_TEXTFORMAT_H
|
|
|
|
#include "nvim/normal.h" // for oparg_T
|
|
#include "nvim/pos.h" // for linenr_T
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "textformat.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_TEXTFORMAT_H
|