refactor(IWYU): move typedefs out of globals.h (#26322)

This commit is contained in:
zeertzjq
2023-11-30 19:52:23 +08:00
committed by GitHub
parent 3b6dd8608d
commit c8e37a589a
33 changed files with 322 additions and 322 deletions

View File

@@ -5,8 +5,7 @@
#include "nvim/eval/typval_defs.h"
#include "nvim/types_defs.h"
/// Maximum length of key sequence to be mapped.
enum { MAXMAPLEN = 50, };
enum { MAXMAPLEN = 50, }; ///< Maximum length of key sequence to be mapped.
/// Structure used for mappings and abbreviations.
typedef struct mapblock mapblock_T;