aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui_defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ui_defs.h')
-rw-r--r--src/nvim/ui_defs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/ui_defs.h b/src/nvim/ui_defs.h
index c4707d4d7c..2245575306 100644
--- a/src/nvim/ui_defs.h
+++ b/src/nvim/ui_defs.h
@@ -93,3 +93,8 @@ struct ui_t {
// TODO(bfredl): integrate into struct!
UIData data[1];
};
+
+typedef struct {
+ const char *name;
+ void (*fn)(Array args);
+} UIClientHandler;