diff options
| author | Arjun Karangiya <kar.9990@gmail.com> | 2022-02-02 19:55:48 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-02 14:25:48 +0000 |
| commit | 82b70e3a8e3aed45998c38024e8c3e16f9680cff (patch) | |
| tree | 75e47c3977fe14264b5c908604dc3f2ef739fdce /.config/nvim | |
| parent | c28d25c15261e417fd9a2e3c0424aa777f9ffd6a (diff) | |
| download | eibhear-82b70e3a8e3aed45998c38024e8c3e16f9680cff.tar.gz eibhear-82b70e3a8e3aed45998c38024e8c3e16f9680cff.tar.zst eibhear-82b70e3a8e3aed45998c38024e8c3e16f9680cff.zip | |
Bug: initial value is wrong; it should be false, 0 (#1074)
This caused no effect for the first call to ToggleHiddenAll().
The second call works as value was set correctly inside
ToggleHiddenAll() on the first call.
Diffstat (limited to '.config/nvim')
| -rw-r--r-- | .config/nvim/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 2fa101d..09610fd 100644 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim @@ -132,7 +132,7 @@ if &diff endif " Function for toggling the bottom statusbar: -let s:hidden_all = 1 +let s:hidden_all = 0 function! ToggleHiddenAll() if s:hidden_all == 0 let s:hidden_all = 1 |
