diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-28 20:37:52 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-04-28 20:37:52 +0200 |
| commit | 129f107c0c26fbf371bcf165ec20eb13356bfb8e (patch) | |
| tree | 864bf25c65c6cfcd4e17c0ebd04afdad1342c268 /src/nvim/normal.c | |
| parent | 7044aa6e8256844bc1bd23eb61d4a41ca6d418d0 (diff) | |
| parent | 8f59d1483934f91011b755406251136c406e77f6 (diff) | |
| download | rneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.tar.gz rneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.tar.bz2 rneovim-129f107c0c26fbf371bcf165ec20eb13356bfb8e.zip | |
Merge #6247 'api: nvim_get_mode()'
Diffstat (limited to 'src/nvim/normal.c')
| -rw-r--r-- | src/nvim/normal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 51da9429b6..f73e3079b9 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -541,7 +541,7 @@ static bool normal_handle_special_visual_command(NormalState *s) return false; } -static bool normal_need_aditional_char(NormalState *s) +static bool normal_need_additional_char(NormalState *s) { int flags = nv_cmds[s->idx].cmd_flags; bool pending_op = s->oa.op_type != OP_NOP; @@ -1083,7 +1083,7 @@ static int normal_execute(VimState *state, int key) } // Get an additional character if we need one. - if (normal_need_aditional_char(s)) { + if (normal_need_additional_char(s)) { normal_get_additional_char(s); } |
