diff options
author | Dundar Göc <gocdundar@gmail.com> | 2021-07-26 22:17:23 +0200 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2021-07-30 12:29:32 +0200 |
commit | 94120d2fd5a9e1f340921283bb5f5db1824899c2 (patch) | |
tree | 65cbfbb3a174c8b24b991b2322828bf89aac3c24 /src/nvim/fileio.c | |
parent | c642f3ac27aa842e374334d11291fd5129ab6887 (diff) | |
download | rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.tar.gz rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.tar.bz2 rneovim-94120d2fd5a9e1f340921283bb5f5db1824899c2.zip |
refactor: replace TRUE/FALSE with true/false
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 9b89a4dd38..ee8be8429f 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -290,7 +290,7 @@ readfile( /* After reading a file the cursor line changes but we don't want to * display the line. */ - ex_no_reprint = TRUE; + ex_no_reprint = true; // don't display the file info for another buffer now need_fileinfo = false; @@ -2237,7 +2237,7 @@ buf_write( /* After writing a file changedtick changes but we don't want to display * the line. */ - ex_no_reprint = TRUE; + ex_no_reprint = true; /* * If there is no file name yet, use the one for the written file. @@ -4241,7 +4241,7 @@ void shorten_fnames(int force) mf_fullname(buf->b_ml.ml_mfp); } status_redraw_all(); - redraw_tabline = TRUE; + redraw_tabline = true; } /// Get new filename ended by given extension. |