aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/types.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-06-18 00:00:51 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-08-27 21:19:10 +0200
commit21f0f7bca5a13fe847478ef27dc26bced9b3f3d1 (patch)
tree72f91c7794869206527eaa9497671a79aab1d3d8 /src/nvim/types.h
parenta851090dec8600b38d54cd65264e4146ad02b1e0 (diff)
downloadrneovim-21f0f7bca5a13fe847478ef27dc26bced9b3f3d1.tar.gz
rneovim-21f0f7bca5a13fe847478ef27dc26bced9b3f3d1.tar.bz2
rneovim-21f0f7bca5a13fe847478ef27dc26bced9b3f3d1.zip
paste: WIP #4448
Diffstat (limited to 'src/nvim/types.h')
-rw-r--r--src/nvim/types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/types.h b/src/nvim/types.h
index 5bcc0c3e1b..87560a43da 100644
--- a/src/nvim/types.h
+++ b/src/nvim/types.h
@@ -23,4 +23,10 @@ typedef int LuaRef;
typedef struct expand expand_T;
+typedef enum {
+ kNone = -1,
+ kFalse = 0,
+ kTrue = 1,
+} TriState;
+
#endif // NVIM_TYPES_H