diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-06-30 14:27:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 20:27:52 +0800 |
commit | cb84f5ee530f0f32b92bed5b4ad41344e8b551aa (patch) | |
tree | c6322c4742fca83982ac895d0d0d6975159a5690 /src/nvim/normal.c | |
parent | 69cd0ba27bfc595b643cde0d9f1156ee144dee4a (diff) | |
download | rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.tar.gz rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.tar.bz2 rneovim-cb84f5ee530f0f32b92bed5b4ad41344e8b551aa.zip |
refactor(uncrustify): change config to better align with style guide (#18803)
refactor(uncrustify): change config to better align with neovim style
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 1ca403965c..aeb85eba1c 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -1022,7 +1022,7 @@ static int normal_execute(VimState *state, int key) s->need_flushbuf = add_to_showcmd(s->c); - while (normal_get_command_count(s)) { } + while (normal_get_command_count(s)) {} if (s->c == K_EVENT) { // Save the count values so that ca.opcount and ca.count0 are exactly |