diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2016-06-08 22:11:20 -0400 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2016-06-09 15:47:35 +0200 |
commit | e35562474803f369bdf7cea306640da3bef6cad3 (patch) | |
tree | 5fe43f9184a8e5c89eeb954a07ef1d9f0e0c3095 /src | |
parent | 06bbb79e63c24a29334b4ed52333ff32a97e84fb (diff) | |
download | rneovim-e35562474803f369bdf7cea306640da3bef6cad3.tar.gz rneovim-e35562474803f369bdf7cea306640da3bef6cad3.tar.bz2 rneovim-e35562474803f369bdf7cea306640da3bef6cad3.zip |
Fix style according to linter
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_docmd.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 3f28435ec0..b66b5cf3a9 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -7872,8 +7872,10 @@ void exec_normal(bool was_typed) clear_oparg(&oa); finish_op = false; - while ((!stuff_empty() || ((was_typed || !typebuf_typed()) - && typebuf.tb_len > 0)) && !got_int) { + while ((!stuff_empty() + || ((was_typed || !typebuf_typed()) + && typebuf.tb_len > 0)) + && !got_int) { update_topline_cursor(); normal_cmd(&oa, true); // execute a Normal mode cmd } |