diff options
author | ii14 <59243201+ii14@users.noreply.github.com> | 2023-04-01 02:56:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-01 08:56:44 +0800 |
commit | 75e1b1d5c934aa3a12693a7df58795563fb7877e (patch) | |
tree | 5a5acacd67b00a6aa33de801032e23619ca70c10 /src/nvim/move.c | |
parent | d5f6176e6dc4b4e12fc5061ca6e87f4af533e46a (diff) | |
download | rneovim-75e1b1d5c934aa3a12693a7df58795563fb7877e.tar.gz rneovim-75e1b1d5c934aa3a12693a7df58795563fb7877e.tar.bz2 rneovim-75e1b1d5c934aa3a12693a7df58795563fb7877e.zip |
refactor: use bool type for global variables (#22842)
Diffstat (limited to 'src/nvim/move.c')
-rw-r--r-- | src/nvim/move.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/move.c b/src/nvim/move.c index a9f7ffaa76..e74dc32fd4 100644 --- a/src/nvim/move.c +++ b/src/nvim/move.c @@ -2241,7 +2241,7 @@ void do_check_cursorbind(void) int old_VIsual_active = VIsual_active; // loop through the cursorbound windows - VIsual_select = VIsual_active = 0; + VIsual_select = VIsual_active = false; FOR_ALL_WINDOWS_IN_TAB(wp, curtab) { curwin = wp; curbuf = curwin->w_buffer; |