diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:38:40 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-06 11:49:59 -0400 |
commit | b9ab3636362c67bb49f8cd165006c97ffc9a00da (patch) | |
tree | 41a381eb9285590ac11dbc0e74d48b1b8163cba4 /src/nvim/globals.h | |
parent | 7692dfeecbcdfb656cb3853907421a7f58f16c7a (diff) | |
download | rneovim-b9ab3636362c67bb49f8cd165006c97ffc9a00da.tar.gz rneovim-b9ab3636362c67bb49f8cd165006c97ffc9a00da.tar.bz2 rneovim-b9ab3636362c67bb49f8cd165006c97ffc9a00da.zip |
globals: did_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 25a82c07d4..8ae422f21b 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -632,7 +632,7 @@ EXTERN int did_syncbind INIT(= FALSE); * This flag is set when a smart indent has been performed. When the next typed * character is a '{' the inserted tab will be deleted again. */ -EXTERN int did_si INIT(= FALSE); +EXTERN bool did_si INIT(= false); /* * This flag is set after an auto indent. If the next typed character is a '}' |