aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/lua/executor.h
diff options
context:
space:
mode:
authorDundar Göc <gocdundar@gmail.com>2022-03-09 21:19:37 +0100
committerDundar Göc <gocdundar@gmail.com>2022-03-10 09:14:12 +0100
commit7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch)
tree47547273268e887fa59b5529d6afde46772a7254 /src/nvim/lua/executor.h
parentd0cb8744d84822209edd0ac242f2400c784e6dc5 (diff)
downloadrneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz
rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2
rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip
refactor(uncrustify): format all c files
Diffstat (limited to 'src/nvim/lua/executor.h')
-rw-r--r--src/nvim/lua/executor.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/lua/executor.h b/src/nvim/lua/executor.h
index d978dc55d3..e96494ec5a 100644
--- a/src/nvim/lua/executor.h
+++ b/src/nvim/lua/executor.h
@@ -4,8 +4,8 @@
#include <lauxlib.h>
#include <lua.h>
-#include "nvim/assert.h"
#include "nvim/api/private/defs.h"
+#include "nvim/assert.h"
#include "nvim/eval/typval.h"
#include "nvim/ex_cmds_defs.h"
#include "nvim/ex_docmd.h"
@@ -16,9 +16,9 @@
void nlua_add_api_functions(lua_State *lstate) REAL_FATTR_NONNULL_ALL;
typedef struct {
- LuaRef nil_ref;
- LuaRef empty_dict_ref;
- int ref_count;
+ LuaRef nil_ref;
+ LuaRef empty_dict_ref;
+ int ref_count;
#if __has_feature(address_sanitizer)
PMap(handle_T) ref_markers;
#endif