aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-03-16 18:43:44 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-03-16 18:44:10 +0100
commit1dbe7a4decdd7e93153c0c3cb81197531b719b81 (patch)
tree799a1a3016e7c970d3bbb23cd7ed8546785d7afe
parenta90beeadbb5dfbe443eae3c057c79a9cefa47ad6 (diff)
downloadrneovim-1dbe7a4decdd7e93153c0c3cb81197531b719b81.tar.gz
rneovim-1dbe7a4decdd7e93153c0c3cb81197531b719b81.tar.bz2
rneovim-1dbe7a4decdd7e93153c0c3cb81197531b719b81.zip
doc: handle_* function declarations
-rw-r--r--src/nvim/api/private/handle.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/api/private/handle.h b/src/nvim/api/private/handle.h
index 30bbfbee1b..26e9dc3314 100644
--- a/src/nvim/api/private/handle.h
+++ b/src/nvim/api/private/handle.h
@@ -10,8 +10,11 @@
void handle_register_##name(type *name); \
void handle_unregister_##name(type *name);
+// handle_get_buffer handle_register_buffer, handle_unregister_buffer
HANDLE_DECLS(buf_T, buffer)
+// handle_get_window handle_register_window, handle_unregister_window
HANDLE_DECLS(win_T, window)
+// handle_get_tabpage handle_register_tabpage, handle_unregister_tabpage
HANDLE_DECLS(tabpage_T, tabpage)
void handle_init(void);