From 7692dfeecbcdfb656cb3853907421a7f58f16c7a Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Mon, 6 Aug 2018 11:35:34 -0400 Subject: globals: can_si is bool --- src/nvim/edit.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/nvim/edit.c') diff --git a/src/nvim/edit.c b/src/nvim/edit.c index 3d234c8c56..99ab991d51 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -4466,7 +4466,7 @@ static int ins_complete(int c, bool enable_pum) did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; if (stop_arrow() == FAIL) { return FAIL; @@ -5272,7 +5272,7 @@ insertchar ( did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; // If there's any pending input, grab up to INPUT_BUFLEN at once. @@ -5661,7 +5661,7 @@ internal_format ( // moved the cursor, don't autoindent or cindent now did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; line_breakcheck(); } @@ -6083,7 +6083,7 @@ stop_insert ( } did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; /* Set '[ and '] to the inserted text. When end_insert_pos is NULL we are @@ -7467,7 +7467,7 @@ static void ins_shift(int c, int lastc) if (did_ai && *skipwhite(get_cursor_line_ptr()) != NUL) did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; can_cindent = false; // no cindenting after ^D or ^T } @@ -7491,7 +7491,7 @@ static void ins_del(void) } did_ai = FALSE; did_si = FALSE; - can_si = FALSE; + can_si = false; can_si_back = false; AppendCharToRedobuff(K_DEL); } -- cgit