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

Drops comments `// for …` that do not pass linter for them being unmaintainable and fast to becoming incomplete or even incorrect. Mention @dedmass
12 lines
214 B
C
12 lines
214 B
C
#ifndef NVIM_MOVE_H
|
|
#define NVIM_MOVE_H
|
|
|
|
#include <stdbool.h>
|
|
#include "nvim/buffer_defs.h"
|
|
#include "nvim/pos.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "move.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_MOVE_H
|