diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 21:19:37 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-10 09:14:12 +0100 |
commit | 7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch) | |
tree | 47547273268e887fa59b5529d6afde46772a7254 /src/nvim/api/buffer.c | |
parent | d0cb8744d84822209edd0ac242f2400c784e6dc5 (diff) | |
download | rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2 rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip |
refactor(uncrustify): format all c files
Diffstat (limited to 'src/nvim/api/buffer.c')
-rw-r--r-- | src/nvim/api/buffer.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/nvim/api/buffer.c b/src/nvim/api/buffer.c index 3bddbe8fe6..a3af51008f 100644 --- a/src/nvim/api/buffer.c +++ b/src/nvim/api/buffer.c @@ -965,8 +965,7 @@ void nvim_buf_set_keymap(uint64_t channel_id, Buffer buffer, String mode, String /// @see |nvim_del_keymap()| /// /// @param buffer Buffer handle, or 0 for current buffer -void nvim_buf_del_keymap(uint64_t channel_id, Buffer buffer, String mode, - String lhs, Error *err) +void nvim_buf_del_keymap(uint64_t channel_id, Buffer buffer, String mode, String lhs, Error *err) FUNC_API_SINCE(6) { String rhs = { .data = "", .size = 0 }; @@ -1380,8 +1379,8 @@ Object nvim_buf_call(Buffer buffer, LuaRef fun, Error *err) /// @param buffer Buffer handle, or 0 for current buffer. /// @param[out] err Error details, if any. /// @see nvim_add_user_command -void nvim_buf_add_user_command(Buffer buffer, String name, Object command, - Dict(user_command) *opts, Error *err) +void nvim_buf_add_user_command(Buffer buffer, String name, Object command, Dict(user_command) *opts, + Error *err) FUNC_API_SINCE(9) { buf_T *target_buf = find_buffer_by_handle(buffer, err); |