diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-12 21:11:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 21:11:37 +0100 |
commit | 36ca585d2f6b048c518edb9a3003cb7f0ec826ab (patch) | |
tree | 1b63176d66c1e09a030499971591cf20c172c390 /src/nvim/ui_client.h | |
parent | ab456bc304965d83585cd248284cb36c96927457 (diff) | |
parent | a4400bf8cda8ace4c4aab67bc73a1820478f46f1 (diff) | |
download | rneovim-36ca585d2f6b048c518edb9a3003cb7f0ec826ab.tar.gz rneovim-36ca585d2f6b048c518edb9a3003cb7f0ec826ab.tar.bz2 rneovim-36ca585d2f6b048c518edb9a3003cb7f0ec826ab.zip |
Merge pull request #17691 from bfredl/serverconnect
feat(ui): connect to remote ui (beginning of ui client)
Diffstat (limited to 'src/nvim/ui_client.h')
-rw-r--r-- | src/nvim/ui_client.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/nvim/ui_client.h b/src/nvim/ui_client.h new file mode 100644 index 0000000000..067f78d5c5 --- /dev/null +++ b/src/nvim/ui_client.h @@ -0,0 +1,9 @@ +#ifndef NVIM_UI_CLIENT_H +#define NVIM_UI_CLIENT_H + +#include "nvim/api/private/defs.h" + +#ifdef INCLUDE_GENERATED_DECLARATIONS +#include "ui_client.h.generated.h" +#endif +#endif // NVIM_UI_CLIENT_H |