aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/shada.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/shada.h')
-rw-r--r--src/nvim/shada.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/nvim/shada.h b/src/nvim/shada.h
new file mode 100644
index 0000000000..f0935796d7
--- /dev/null
+++ b/src/nvim/shada.h
@@ -0,0 +1,18 @@
+#ifndef NVIM_SHADA_H
+#define NVIM_SHADA_H
+
+typedef long ShadaPosition;
+
+/// Flags for shada_read_file and children
+enum {
+ kShaDaWantInfo = 1, ///< Load non-mark information
+ kShaDaWantMarks = 2, ///< Load file marks
+ kShaDaForceit = 4, ///< Overwrite info already read
+ kShaDaGetOldfiles = 8, ///< Load v:oldfiles.
+};
+
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "shada.h.generated.h"
+#endif
+
+#endif // NVIM_SHADA_H