mirror of
https://github.com/neovim/neovim.git
synced 2025-10-16 06:46:07 +00:00
15 lines
184 B
C
15 lines
184 B
C
#ifndef NVIM_MAP_DEFS_H
|
|
#define NVIM_MAP_DEFS_H
|
|
|
|
|
|
#include "nvim/lib/khash.h"
|
|
|
|
typedef const char * cstr_t;
|
|
typedef void * ptr_t;
|
|
|
|
#define Map(T) Map_##T
|
|
|
|
|
|
#endif // NVIM_MAP_DEFS_H
|
|
|