diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-04-24 20:38:00 +0200 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-05-23 22:07:27 +0200 |
commit | e7451f8a91e0a9452fc3c3627ac60dc80288252c (patch) | |
tree | df606b41f1cf56b8eeb05671ae8e9eb3f136601c /src/nvim/buffer_updates.h | |
parent | de5d1e863c71c8da87422bdb94dc91749d4a8b61 (diff) | |
download | rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.tar.gz rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.tar.bz2 rneovim-e7451f8a91e0a9452fc3c3627ac60dc80288252c.zip |
Some renamings and doc changes
Diffstat (limited to 'src/nvim/buffer_updates.h')
-rw-r--r-- | src/nvim/buffer_updates.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/buffer_updates.h b/src/nvim/buffer_updates.h index 63ae2d3984..23804809f1 100644 --- a/src/nvim/buffer_updates.h +++ b/src/nvim/buffer_updates.h @@ -3,14 +3,14 @@ #include "nvim/buffer_defs.h" -bool buffer_updates_register(buf_T *buf, uint64_t channel_id, bool send_buffer); -void buffer_updates_unregister(buf_T *buf, uint64_t channel_id); -void buffer_updates_unregister_all(buf_T *buf); -void buffer_updates_send_changes(buf_T *buf, +bool buf_updates_register(buf_T *buf, uint64_t channel_id, bool send_buffer); +void buf_updates_unregister(buf_T *buf, uint64_t channel_id); +void buf_updates_unregister_all(buf_T *buf); +void buf_updates_send_changes(buf_T *buf, linenr_T firstline, int64_t num_added, int64_t num_removed, bool send_tick); -void buffer_updates_send_tick(buf_T *buf); +void buf_updates_changedtick(buf_T *buf); #endif // NVIM_BUFFER_UPDATES_H |