diff options
author | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-23 23:19:33 +0100 |
---|---|---|
committer | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-24 00:21:05 +0100 |
commit | 7add3ef996db3fd6ec8d03d2b8d879c58934b6e5 (patch) | |
tree | 644b185f37197352178e824c549c9f5c93af3acd /src/nvim/edit.c | |
parent | 45166313ccf15dac5dd45926e77c58240de79413 (diff) | |
download | rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.tar.gz rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.tar.bz2 rneovim-7add3ef996db3fd6ec8d03d2b8d879c58934b6e5.zip |
fix: appease linter
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 7b199d3b8c..a07e694817 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -5327,8 +5327,9 @@ static int ins_complete(int c, bool enable_pum) compl_curr_match->cp_number); edit_submode_extra = match_ref; edit_submode_highl = HLF_R; - if (dollar_vcol >= 0) + if (dollar_vcol >= 0) { curs_columns(curwin, false); + } } } } |