diff options
author | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-02-11 22:51:29 +0100 |
---|---|---|
committer | KillTheMule <KillTheMule@users.noreply.github.com> | 2018-05-23 22:07:27 +0200 |
commit | 6bdcbef2f5acfd9815599c751bd8dcbe3204281f (patch) | |
tree | f062beba15edde1f0a8120bcef09caf00c585bee /src/nvim/liveupdate.h | |
parent | a1d831a49c9428fcbd55d4b06bacca9cb2e9320c (diff) | |
download | rneovim-6bdcbef2f5acfd9815599c751bd8dcbe3204281f.tar.gz rneovim-6bdcbef2f5acfd9815599c751bd8dcbe3204281f.tar.bz2 rneovim-6bdcbef2f5acfd9815599c751bd8dcbe3204281f.zip |
The grand renaming
Diffstat (limited to 'src/nvim/liveupdate.h')
-rw-r--r-- | src/nvim/liveupdate.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/nvim/liveupdate.h b/src/nvim/liveupdate.h deleted file mode 100644 index 77fb420bf0..0000000000 --- a/src/nvim/liveupdate.h +++ /dev/null @@ -1,13 +0,0 @@ -#ifndef NVIM_LIVEUPDATE_H -#define NVIM_LIVEUPDATE_H - -#include "nvim/buffer_defs.h" - -bool liveupdate_register(buf_T *buf, uint64_t channel_id, bool send_buffer); -void liveupdate_unregister(buf_T *buf, uint64_t channel_id); -void liveupdate_unregister_all(buf_T *buf); -void liveupdate_send_changes(buf_T *buf, linenr_T firstline, int64_t num_added, - int64_t num_removed, bool send_tick); -void liveupdate_send_tick(buf_T *buf); - -#endif // NVIM_LIVEUPDATE_H |