mirror of
https://github.com/neovim/neovim.git
synced 2026-01-22 05:04:51 +10:00
All input buffer code was moved to os/input.c, and `inbuf` is now a `RBuffer` instance(which abstracts static buffer manipulation).
13 lines
234 B
C
13 lines
234 B
C
#ifndef NVIM_OS_INPUT_H
|
|
#define NVIM_OS_INPUT_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "nvim/api/private/defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "os/input.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_OS_INPUT_H
|