aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ui_client.c
diff options
context:
space:
mode:
authorDundar Goc <gocdundar@gmail.com>2022-04-29 13:52:43 +0200
committerDundar Goc <gocdundar@gmail.com>2022-04-29 13:52:43 +0200
commit0b3ae64480ea28bb57783c2269a61f0a60ffc55e (patch)
tree4ac4c98de44aadc96f1c116fe184413975fb64cb /src/nvim/ui_client.c
parent995c1863685d7fa0cc2638b55efee55c4cb7ffc9 (diff)
downloadrneovim-0b3ae64480ea28bb57783c2269a61f0a60ffc55e.tar.gz
rneovim-0b3ae64480ea28bb57783c2269a61f0a60ffc55e.tar.bz2
rneovim-0b3ae64480ea28bb57783c2269a61f0a60ffc55e.zip
refactor(uncrustify): format all c code under /src/nvim/
Diffstat (limited to 'src/nvim/ui_client.c')
-rw-r--r--src/nvim/ui_client.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/nvim/ui_client.c b/src/nvim/ui_client.c
index 6a7695bf72..4d1b9b1c52 100644
--- a/src/nvim/ui_client.c
+++ b/src/nvim/ui_client.c
@@ -1,20 +1,20 @@
// This is an open source non-commercial project. Dear PVS-Studio, please check
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
+#include <assert.h>
#include <stdbool.h>
#include <stdint.h>
-#include <assert.h>
-#include "nvim/vim.h"
+#include "nvim/api/private/dispatch.h"
+#include "nvim/api/private/helpers.h"
+#include "nvim/highlight.h"
#include "nvim/log.h"
#include "nvim/map.h"
-#include "nvim/ui_client.h"
-#include "nvim/api/private/helpers.h"
#include "nvim/msgpack_rpc/channel.h"
-#include "nvim/api/private/dispatch.h"
-#include "nvim/ui.h"
-#include "nvim/highlight.h"
#include "nvim/screen.h"
+#include "nvim/ui.h"
+#include "nvim/ui_client.h"
+#include "nvim/vim.h"
static Map(String, UIClientHandler) ui_client_handlers = MAP_INIT;
@@ -109,7 +109,7 @@ static HlAttrs ui_client_dict2hlattrs(Dictionary d, bool rgb)
}
#ifdef INCLUDE_GENERATED_DECLARATIONS
-#include "ui_events_client.generated.h"
+# include "ui_events_client.generated.h"
#endif
void ui_client_event_grid_resize(Array args)
@@ -210,5 +210,5 @@ void ui_client_event_grid_line(Array args)
return;
error:
- ELOG("Error handling ui event 'grid_line'");
+ ELOG("Error handling ui event 'grid_line'");
}