mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 01:38:16 +00:00
25 lines
660 B
C
25 lines
660 B
C
#ifndef NVIM_VERSION_H
|
|
#define NVIM_VERSION_H
|
|
|
|
// defined in version.c
|
|
extern char* Version;
|
|
extern char* mediumVersion;
|
|
extern char* longVersion;
|
|
|
|
//
|
|
// Vim version number, name, etc. Patchlevel is defined in version.c.
|
|
//
|
|
#define VIM_VERSION_MAJOR 7
|
|
#define VIM_VERSION_MINOR 4
|
|
#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
|
|
|
|
// used for the runtime directory name
|
|
#define VIM_VERSION_NODOT "vim74"
|
|
// swap file compatibility (max. length is 6 chars)
|
|
#define VIM_VERSION_SHORT "7.4"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "version.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_VERSION_H
|