diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:35:34 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:49:59 -0400 |
commit | 7692dfeecbcdfb656cb3853907421a7f58f16c7a (patch) | |
tree | 148e425f8b88895b1b60f9f5478d23bc72542196 /src/nvim/globals.h | |
parent | 5309ad29d4b6a59caca2d710e27245d18b16f888 (diff) | |
download | rneovim-7692dfeecbcdfb656cb3853907421a7f58f16c7a.tar.gz rneovim-7692dfeecbcdfb656cb3853907421a7f58f16c7a.tar.bz2 rneovim-7692dfeecbcdfb656cb3853907421a7f58f16c7a.zip |
globals: can_si is bool
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index c356716f44..25a82c07d4 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -638,7 +638,7 @@ EXTERN int did_si INIT(= FALSE); * This flag is set after an auto indent. If the next typed character is a '}' * one indent will be removed. */ -EXTERN int can_si INIT(= FALSE); +EXTERN bool can_si INIT(= false); /* * This flag is set after an "O" command. If the next typed character is a '{' |