summaryrefslogtreecommitdiffstats
path: root/.config/nvim/init.vim
diff options
context:
space:
mode:
authorArjun Karangiya <kar.9990@gmail.com>2022-02-02 19:55:48 +0530
committerGitHub <noreply@github.com>2022-02-02 14:25:48 +0000
commit82b70e3a8e3aed45998c38024e8c3e16f9680cff (patch)
tree75e47c3977fe14264b5c908604dc3f2ef739fdce /.config/nvim/init.vim
parentc28d25c15261e417fd9a2e3c0424aa777f9ffd6a (diff)
downloadeibhear-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/init.vim')
-rw-r--r--.config/nvim/init.vim2
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