aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/cmdhist.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/cmdhist.h')
-rw-r--r--src/nvim/cmdhist.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/nvim/cmdhist.h b/src/nvim/cmdhist.h
index cce0f92898..489e9d283f 100644
--- a/src/nvim/cmdhist.h
+++ b/src/nvim/cmdhist.h
@@ -1,10 +1,10 @@
#pragma once
-#include "nvim/cmdexpand_defs.h" // IWYU pragma: export
+#include "nvim/cmdexpand_defs.h" // IWYU pragma: keep
#include "nvim/eval/typval_defs.h"
-#include "nvim/ex_cmds_defs.h" // IWYU pragma: export
-#include "nvim/os/time.h"
-#include "nvim/types_defs.h"
+#include "nvim/ex_cmds_defs.h" // IWYU pragma: keep
+#include "nvim/os/time_defs.h"
+#include "nvim/types_defs.h" // IWYU pragma: keep
/// Present history tables
typedef enum {
@@ -17,8 +17,7 @@ typedef enum {
HIST_DEBUG, ///< Debug commands.
} HistoryType;
-/// Number of history tables
-#define HIST_COUNT (HIST_DEBUG + 1)
+enum { HIST_COUNT = HIST_DEBUG + 1, }; ///< Number of history tables
/// History entry definition
typedef struct hist_entry {