Files
neovim/src/nvim/map_defs.h
Thiago de Arruda 25595d97d5 Improve map module: Refactor vim_to_object_rec
Now the map.c module is used to implement the 'lookup set' for that function
2014-05-19 10:52:15 -03:00

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